X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fsort-test.c;h=c3a48c8c4c1f94ec56274ee06b28c994ae575502;hb=62eda8640605c19ecd817e274e75717022349732;hp=9d32277797af76f22eb929d3b948b39fc62a6d7f;hpb=8ededf391ba2f87b4b3096ac3549765fd7de0732;p=libucw.git diff --git a/lib/sort-test.c b/lib/sort-test.c index 9d322777..c3a48c8c 100644 --- a/lib/sort-test.c +++ b/lib/sort-test.c @@ -1,9 +1,10 @@ /* Test for sorting routines */ #include "lib/lib.h" -#include "lib/conf.h" +#include "lib/getopt.h" #include "lib/fastbuf.h" +#include #include #include @@ -79,7 +80,10 @@ main(int argc, char **argv) log_init(NULL); if (cf_getopt(argc, argv, CF_SHORT_OPTS, CF_NO_LONG_OPTS, NULL) >= 0 || optind != argc - 2) - die("Usage: sort-test [] \nOptions:\n" CF_USAGE); + { + fputs("This program supports only the following command-line arguments:\n" CF_USAGE, stderr); + exit(1); + } s_sort(argv[optind], argv[optind+1]); return 0;