Minor fix

This commit is contained in:
Nikita Ivanov 2022-07-25 19:34:48 +05:00
parent f85adf9760
commit fda170aa19
No known key found for this signature in database
GPG Key ID: 6E656AC5B97B5133
2 changed files with 23 additions and 23 deletions

View File

@ -257,7 +257,7 @@ static enum Status cmd_set(Parser *ctx)
*opt->arg_val.s = value.val.s;
break;
default:
PRINTINTERR("unknowm type: %d", opt->arg_type);
PRINTINTERR("unknown type: %d", opt->arg_type);
abort();
}

View File

@ -420,7 +420,7 @@ int main(int argc, char *argv[])
ret = mime(argc, argv);
break;
default:
PRINTINTERR("unknowm mode: %d", ctpv.mode);
PRINTINTERR("unknown mode: %d", ctpv.mode);
ret = ERR;
break;
}