verbs: fix typo in error message

This commit is contained in:
Dave Reisner 2014-12-21 21:28:49 -05:00
parent c470b44ff0
commit 540d858183

View file

@ -73,7 +73,7 @@ int dispatch_verb(int argc, char *argv[], const Verb verbs[], void *userdata) {
if (verb->max_args != VERB_ANY &&
(unsigned) left > verb->max_args) {
log_error("Too many argument.s");
log_error("Too many arguments.");
return -EINVAL;
}