Add missing static keywords to usbhidctl(1)

This commit is contained in:
Ed Schouten
2011-11-06 08:18:30 +00:00
parent 793cdace4d
commit 69c5bce6ee
+6 -6
View File
@@ -42,7 +42,7 @@
#include <usbhid.h>
#include <dev/usb/usbhid.h>
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);