setcerr(106, ""); /* operand count mismatch */
return;
}
- if(cmdl->label == '\0') {
+ if(*(cmdl->label) == '\0') {
setcerr(107, ""); /* no label in START */
return;
}
stat = (cerr->num == 0) ? true : false;
if(cmdl != NULL) {
if(stat == true) {
- if(pass == FIRST && cmdl->label != '\0') {
+ if(pass == FIRST && *(cmdl->label) != '\0') {
stat = addlabel(asptr->prog, cmdl->label, asptr->ptr);
}
}
cmdl->label = malloc_chk(LABELSIZE + 1, "cmdl.label");
/* ラベルの取得。行の先頭が空白またはタブの場合、ラベルは空 */
if((sepp = p + strcspn(p, " \t\n")) == p){
- cmdl->label = '\0';
+ *(cmdl->label) = '\0';
} else { /* ラベルを取得 */
*sepp = '\0';
/* 文字列が長すぎる場合はエラー */
}
/* 命令とオペランドの取得 */
if(*p == '\n' || *p == '\0') { /* 命令がない場合は、終了 */
- if(cmdl->label != '\0') { /* ラベルが定義されていて命令がない場合はエラー */
+ if(*(cmdl->label) != '\0') { /* ラベルが定義されていて命令がない場合はエラー */
setcerr(105, ""); /* no command in the line */
}
FREE(cmdl->label);