summaryrefslogtreecommitdiffstats
path: root/bin/dd/args.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-09-20 06:24:56 +0000
committerphk <phk@FreeBSD.org>1994-09-20 06:24:56 +0000
commit1da6fa08f8206df2750dd100912f64bc3b508afd (patch)
tree331c1fca4ef817a4bc201b59cd83d2157370968e /bin/dd/args.c
parent55c056a94255d28cb34253b2725c241315b9eed4 (diff)
downloadFreeBSD-src-1da6fa08f8206df2750dd100912f64bc3b508afd.zip
FreeBSD-src-1da6fa08f8206df2750dd100912f64bc3b508afd.tar.gz
Applied patch to make -Wall and -Dlint shut up.
Reviewed by: phk Submitted by: Josef Grosch <joeg@gagme.wwa.com>
Diffstat (limited to 'bin/dd/args.c')
-rw-r--r--bin/dd/args.c2
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';
OpenPOWER on IntegriCloud