From 64049aa600f50a18a967123b5217d89fcde5c410 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Thu, 7 Mar 2002 23:01:55 +0000 Subject: [PATCH] Slightly more efficient version of rev 1.6. --- usr.bin/hexdump/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/hexdump/parse.c b/usr.bin/hexdump/parse.c index d11071b8c3a3..bd96462776a2 100644 --- a/usr.bin/hexdump/parse.c +++ b/usr.bin/hexdump/parse.c @@ -151,7 +151,7 @@ add(fmt) } } -static char spec[] = ".#-+ 0123456789"; +static const char *spec = ".#-+ 0123456789"; int size(fs)