diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/popt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/support/popt.c b/support/popt.c index 0df31796..025d2d53 100644 --- a/support/popt.c +++ b/support/popt.c @@ -363,7 +363,9 @@ int poptGetNextOpt(poptContext con) { break; default: - printf("option type not implemented in popt\n"); + /* XXX I18N? */ + fprintf(stdout, "option type (%d) not implemented in popt\n", + opt->argInfo); exit(1); } } |