diff options
author | Miles Bader <miles@gnu.org> | 1996-06-21 21:27:27 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-06-21 21:27:27 +0000 |
commit | 3d5b150c93d186d64e8b5d408b31e1ecb52ed473 (patch) | |
tree | 6de41ebd4b46aeab2c7b0917d60abdace80a980f /pfinet/main.c | |
parent | 5e031a6b4ee312d7bf64c5d98e7b7210444827cb (diff) |
(main): Pass ARGC & ARGV to argp_parse in the correct order.
Diffstat (limited to 'pfinet/main.c')
-rw-r--r-- | pfinet/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pfinet/main.c b/pfinet/main.c index 256ad88d..db9a3219 100644 --- a/pfinet/main.c +++ b/pfinet/main.c @@ -192,7 +192,7 @@ main (int argc, arrange_shutdown_notification (); /* Parse options. */ - argp_parse (&pfinet_argp, argv, argc, 0,0,0); + argp_parse (&pfinet_argp, argc, argv, 0,0,0); /* Talk to parent and link us in. */ task_get_bootstrap_port (mach_task_self (), &bootstrap); |