Fix a typo in a comment.

This commit is contained in:
Andrius Štikonas 2019-10-28 00:51:42 +00:00
parent dea4f902b7
commit cccd5cdc4a
Signed by: andrius
GPG Key ID: E2E5CD054CB9CD3E
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ int numerate_string(char *a)
{
return set_reader("0123456789ABCDEFabcdef", 16, a+2);
}
/* Deal with ocal */
/* Deal with octal */
else if('0' == a[0])
{
return set_reader("01234567", 8, a+1);