Module Name: src Committed By: kre Date: Sat Aug 19 21:13:11 UTC 2017
Modified Files: src/bin/sh: input.c Log Message: NFC - DEBUG mode change only - add some sanity to a debug printf format string To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/bin/sh/input.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/bin/sh/input.c diff -u src/bin/sh/input.c:1.61 src/bin/sh/input.c:1.62 --- src/bin/sh/input.c:1.61 Sat Aug 5 11:33:05 2017 +++ src/bin/sh/input.c Sat Aug 19 21:13:11 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: input.c,v 1.61 2017/08/05 11:33:05 kre Exp $ */ +/* $NetBSD: input.c,v 1.62 2017/08/19 21:13:11 kre Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)input.c 8.3 (Berkeley) 6/9/95"; #else -__RCSID("$NetBSD: input.c,v 1.61 2017/08/05 11:33:05 kre Exp $"); +__RCSID("$NetBSD: input.c,v 1.62 2017/08/19 21:13:11 kre Exp $"); #endif #endif /* not lint */ @@ -508,7 +508,7 @@ setinputstring(char *string, int push, i plinno = line1; CTRACE(DBG_INPUT, - ("setinputstring(\"%.20s%s\" (%d), %push, @ %d)\n", string, + ("setinputstring(\"%.20s%s\" (%d), %spush, @ %d)\n", string, (parsenleft > 20 ? "..." : ""), parsenleft, push?"":"no", line1)); INTON; }