From 25b4fbd02b913d2e9be2275196d4d3254751ba4b Mon Sep 17 00:00:00 2001 From: ed Date: Sun, 6 Nov 2011 08:18:30 +0000 Subject: Add missing static keywords to usbhidctl(1) --- usr.bin/usbhidctl/usbhid.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/usr.bin/usbhidctl/usbhid.c b/usr.bin/usbhidctl/usbhid.c index bf3e348..2a28e3e 100644 --- a/usr.bin/usbhidctl/usbhid.c +++ b/usr.bin/usbhidctl/usbhid.c @@ -42,7 +42,7 @@ #include #include -struct variable { +static struct variable { char *name; int instance; int val; @@ -50,11 +50,11 @@ struct variable { struct variable *next; } *vars; -int verbose = 0; -int noname = 0; -int hexdump = 0; -int wflag = 0; -int zflag = 0; +static int verbose = 0; +static int noname = 0; +static int hexdump = 0; +static int wflag = 0; +static int zflag = 0; static void usage(void); static void dumpitem(const char *label, struct hid_item *h); -- cgit v1.1