From bbc0e1a927fd9ff0853dd0daef26e084fc0ed5dc Mon Sep 17 00:00:00 2001 From: rdivacky Date: Wed, 10 Jul 2013 18:07:01 +0000 Subject: Fix -Wmissing-variable-declarations compiler warning. --- usr.sbin/nvram/nvram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin') diff --git a/usr.sbin/nvram/nvram.c b/usr.sbin/nvram/nvram.c index a286ee3..52c1e80 100644 --- a/usr.sbin/nvram/nvram.c +++ b/usr.sbin/nvram/nvram.c @@ -51,7 +51,7 @@ struct deletelist { struct deletelist *last; }; -union { +static union { uint8_t buf[sizeof(struct chrp_header)]; struct chrp_header header; } conv; -- cgit v1.1