diff options
author | Miles Bader <miles@gnu.org> | 1997-02-26 23:36:00 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-26 23:36:00 +0000 |
commit | c369a65a4545c7b0e389187d4a1555baeafe8b29 (patch) | |
tree | 4a9d52d4d043f09a683c75f75a6d50e93b3b3d08 /utils | |
parent | e1175ff7feacee6418eadab8b59518a8d2d08b74 (diff) |
(main): Remove ERR.
Diffstat (limited to 'utils')
-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) |