summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-11-05 23:26:24 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-11-22 22:29:57 -0800
commitad85d2eb4e44f21e8e38aa3bdec4acb139989218 (patch)
tree07105592406f620c68e53cdb2ff52d0e4177b847
parente371fa337f256306fb93eaca7fbbe8ee5283dcfa (diff)
Fix "noexistent" typo in error message
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/process.c b/process.c
index 97bcfa9..09cb7ef 100644
--- a/process.c
+++ b/process.c
@@ -1060,7 +1060,7 @@ static int do_help (
if (n == 0) {
prefix (inputfilename, lineno);
/* already know that cmd is set in this case */
- fprintf (stderr, "no help for noexistent command \"%s\"\n", cmd);
+ fprintf (stderr, "no help for nonexistent command \"%s\"\n", cmd);
}
return 0;