Commit 1f4953c2 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk

shell/shell.c: correct typo

parent c51f2b70
...@@ -107,7 +107,7 @@ static int _shell_exec() ...@@ -107,7 +107,7 @@ static int _shell_exec()
if (!strcasecmp(p->name, tokptr[0])) { if (!strcasecmp(p->name, tokptr[0])) {
rv = p->exec((const char **)(tokptr + 1)); rv = p->exec((const char **)(tokptr + 1));
if (rv < 0) if (rv < 0)
mprintf("Coomand \"%s\": error %d\n", mprintf("Command \"%s\": error %d\n",
p->name, rv); p->name, rv);
return rv; return rv;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment