summaryrefslogtreecommitdiff
path: root/utils/msgids.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/msgids.c')
-rw-r--r--utils/msgids.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/msgids.c b/utils/msgids.c
index 4bc08ded..d17f1316 100644
--- a/utils/msgids.c
+++ b/utils/msgids.c
@@ -200,7 +200,10 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
case 'i':
if (argz_add (&msgids_files_argz, &msgids_files_argz_len,
arg) != 0)
- error (1, errno, "argz_add");
+ {
+ argp_failure (state, 1, errno, "argz_add");
+ return errno;
+ }
break;
case 'I':