diff options
-rw-r--r-- | utils/devprobe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/devprobe.c b/utils/devprobe.c index fb4be6d0..f3ea01f3 100644 --- a/utils/devprobe.c +++ b/utils/devprobe.c @@ -38,14 +38,13 @@ static const char *doc = "Test for the existance of mach device DEVNAME..." int main (int argc, char **argv) { - error_t err; - mach_port_t device_master = MACH_PORT_NULL; /* Print devices found? (otherwise only exit status matters) */ int print = 1; /* If printing, print all devices on the command line that are found. Otherwise, just the first one found is printed. */ int all = 1; int found_one = 0; + mach_port_t device_master = MACH_PORT_NULL; /* Parse our options... */ error_t parse_opt (int key, char *arg, struct argp_state *state) |