diff options
Diffstat (limited to 'libstore/storeread.c')
-rw-r--r-- | libstore/storeread.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libstore/storeread.c b/libstore/storeread.c index 2558a86b..6b38676a 100644 --- a/libstore/storeread.c +++ b/libstore/storeread.c @@ -1,3 +1,5 @@ +/* Test program for libstore -- outputs a portion of a store */ + #include <argp.h> #include <error.h> #include <unistd.h> @@ -96,6 +98,6 @@ main (int argc, char **argv) return 0; } struct argp argp = {options, parse_opt, arg_doc, doc}; - argp_parse (&argp, argc, argv, 0, 0); + argp_parse (&argp, argc, argv, 0, 0, 0); exit (0); } |