diff options
author | Miles Bader <miles@gnu.org> | 1996-05-11 05:05:12 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-05-11 05:05:12 +0000 |
commit | 830cc2ea7613de4c0693c596b38b140cc02f0c64 (patch) | |
tree | d2fad70f3b25573dbeba7ba96e2e09275295e7a2 /utils/w.c | |
parent | 73b474d7a53dd1608cf9f34bf899c36e0f42ea9e (diff) |
(parse_opt): Use ARGP_ERR_UNKNOWN instead of EINVAL.
Diffstat (limited to 'utils/w.c')
-rw-r--r-- | utils/w.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -403,7 +403,8 @@ main(int argc, char *argv[]) case ARGP_KEY_ARG: break; - default: return EINVAL; + default: + return ARGP_ERR_UNKNOWN; } return 0; } |