From e6068a345fa2c17485bab8b839a010e073bd46a8 Mon Sep 17 00:00:00 2001 From: Steve Price Date: Sun, 6 Oct 1996 02:40:39 +0000 Subject: Remove annoying -Wall warning. --- usr.bin/printf/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 90e8c4501002..c4de8e1905f4 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -257,7 +257,7 @@ escape(fmt) register char *store; register int value, c; - for (store = fmt; c = *fmt; ++fmt, ++store) { + for (store = fmt; (c = *fmt); ++fmt, ++store) { if (c != '\\') { *store = c; continue; -- cgit v1.2.3