fix a shadow warning. from Brian Callahan
authortedu <tedu@openbsd.org>
Tue, 30 May 2017 05:58:44 +0000 (05:58 +0000)
committertedu <tedu@openbsd.org>
Tue, 30 May 2017 05:58:44 +0000 (05:58 +0000)
usr.bin/hexdump/odsyntax.c

index c9e8603..7237771 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: odsyntax.c,v 1.27 2016/03/15 04:19:13 mmcc Exp $      */
+/*     $OpenBSD: odsyntax.c,v 1.28 2017/05/30 05:58:44 tedu Exp $      */
 /*     $NetBSD: odsyntax.c,v 1.15 2001/12/07 15:14:29 bjh21 Exp $      */
 
 /*-
@@ -403,12 +403,12 @@ odoffset(int argc, char ***argvp)
 }
 
 static void
-odadd(const char *fmt)
+odadd(const char *format)
 {
        static int needpad;
 
        if (needpad)
                add("\""PADDING"\"");
-       add(fmt);
+       add(format);
        needpad = 1;
 }