diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2023-06-24 05:17:02 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2023-06-24 05:17:02 +0000 |
| commit | 42921012d6a7c599b783b86a4b4b6de5181f056d (patch) | |
| tree | daebd305d223523a1adbbc50d75bf9700843f0dd /bin | |
| parent | 547f654f6320cbc2561322a4363eb231ca954823 (diff) | |
Fix typo in a debug message.
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/sh/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/eval.c b/bin/sh/eval.c index 0133a15d606..f4f362607ca 100644 --- a/bin/sh/eval.c +++ b/bin/sh/eval.c @@ -1,4 +1,4 @@ -/* $NetBSD: eval.c,v 1.189 2023/04/07 10:34:13 kre Exp $ */ +/* $NetBSD: eval.c,v 1.190 2023/06/24 05:17:02 msaitoh Exp $ */ /*- * Copyright (c) 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95"; #else -__RCSID("$NetBSD: eval.c,v 1.189 2023/04/07 10:34:13 kre Exp $"); +__RCSID("$NetBSD: eval.c,v 1.190 2023/06/24 05:17:02 msaitoh Exp $"); #endif #endif /* not lint */ @@ -1002,7 +1002,7 @@ evalcommand(union node *cmd, int flgs, struct backcmd *backcmd) */ cmdentry.cmdtype = CMDBUILTIN; cmdentry.u.bltin = bltincmd; - VTRACE(DBG_CMDS, ("No command name, assume \"comamnd\"\n")); + VTRACE(DBG_CMDS, ("No command name, assume \"command\"\n")); } else { static const char PATH[] = "PATH="; |
