From 689b7d37999ed684ef99a7c7a668f2bf8df7bd17 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sat, 11 May 1996 05:23:35 +0000 Subject: (parse_opt): Use ARGP_ERR_UNKNOWN instead of EINVAL. --- libstore/storecat.c | 2 +- libstore/storeread.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'libstore') diff --git a/libstore/storecat.c b/libstore/storecat.c index b1f4fa57..1c307965 100644 --- a/libstore/storecat.c +++ b/libstore/storecat.c @@ -99,7 +99,7 @@ main (int argc, char **argv) break; default: - return EINVAL; + return ARGP_ERR_UNKNOWN; } return 0; } diff --git a/libstore/storeread.c b/libstore/storeread.c index e5057a97..ea012727 100644 --- a/libstore/storeread.c +++ b/libstore/storeread.c @@ -90,7 +90,7 @@ main (int argc, char **argv) case ARGP_KEY_NO_ARGS: default: - return EINVAL; + return ARGP_ERR_UNKNOWN; } return 0; } -- cgit v1.2.3