Corrected raw short length

This commit is contained in:
neauoire 2021-10-11 13:35:01 -07:00
parent 037ab10b6a
commit d6ef361383
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ walktoken(char *w)
if(sihx(w) && slen(w) == 2) if(sihx(w) && slen(w) == 2)
return 1; return 1;
else if(sihx(w) && slen(w) == 4) else if(sihx(w) && slen(w) == 4)
return 1; return 2;
return error("Invalid token", w); return error("Invalid token", w);
} }