diff options
author | Steve Price <steve@FreeBSD.org> | 1996-10-06 02:40:39 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1996-10-06 02:40:39 +0000 |
commit | e6068a345fa2c17485bab8b839a010e073bd46a8 (patch) | |
tree | 1d279c67359ed731d31d8529f42f2f8821785d05 /usr.bin/printf | |
parent | c0d06fe46307038927b1e161cbb4d3f4527ac669 (diff) | |
download | src-e6068a345fa2c17485bab8b839a010e073bd46a8.tar.gz src-e6068a345fa2c17485bab8b839a010e073bd46a8.zip |
Notes
Diffstat (limited to 'usr.bin/printf')
-rw-r--r-- | usr.bin/printf/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |