aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/printf
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1996-10-06 02:40:39 +0000
committerSteve Price <steve@FreeBSD.org>1996-10-06 02:40:39 +0000
commite6068a345fa2c17485bab8b839a010e073bd46a8 (patch)
tree1d279c67359ed731d31d8529f42f2f8821785d05 /usr.bin/printf
parentc0d06fe46307038927b1e161cbb4d3f4527ac669 (diff)
downloadsrc-e6068a345fa2c17485bab8b839a010e073bd46a8.tar.gz
src-e6068a345fa2c17485bab8b839a010e073bd46a8.zip
Notes
Diffstat (limited to 'usr.bin/printf')
-rw-r--r--usr.bin/printf/printf.c2
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;