diff options
Diffstat (limited to 'bin/dd/args.c')
-rw-r--r-- | bin/dd/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dd/args.c b/bin/dd/args.c index 3c2f3a2..0640972 100644 --- a/bin/dd/args.c +++ b/bin/dd/args.c @@ -98,7 +98,7 @@ jcl(argv) in.dbsz = out.dbsz = 512; - while (oper = *++argv) { + while ((oper = *++argv)) {/* JEAG */ if ((arg = strchr(oper, '=')) == NULL) errx(1, "unknown operand %s", oper); *arg++ = '\0'; |