Add missing static keywords to usbhidctl(1)

This commit is contained in:
ed 2011-11-06 08:18:30 +00:00
parent 8eae2b0d9c
commit 25b4fbd02b

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);