diff --git a/source/compiler/sc1.c b/source/compiler/sc1.c index 3e19e67..dfbe8b9 100644 --- a/source/compiler/sc1.c +++ b/source/compiler/sc1.c @@ -6303,7 +6303,7 @@ static int emit_findopcode(const char *instr,int maxlen) while (low0) low=mid+1; else @@ -6311,7 +6311,7 @@ static int emit_findopcode(const char *instr,int maxlen) } /* while */ assert(low==high); - if (stricmp(instr,emit_opcodelist[low].name)==0) + if (strcmp(instr,emit_opcodelist[low].name)==0) return low; /* found */ return 0; /* not found, return special index */ }