X-Git-Url: https://iankelling.org/git/?p=evhz;a=blobdiff_plain;f=evhz.c;fp=evhz.c;h=1588024ba06b69b4daf35de3805f33592da56139;hp=be5ff6db9c957676accd8c029cee9823a1d6b0b3;hb=5f76843477f74318bdafd3bf226466d5116d92cd;hpb=d59682bd3edd893714f52694e82462747aee6655 diff --git a/evhz.c b/evhz.c index be5ff6d..1588024 100644 --- a/evhz.c +++ b/evhz.c @@ -28,16 +28,18 @@ int main(int argc, char *argv[]) { int optch; int i; event_t events[EVENTS]; - int verbose = 0; + int verbose = 1; - while((optch = getopt(argc, argv, "hv")) != -1) { + while((optch = getopt(argc, argv, "hn")) != -1) { switch(optch) { case('h'): - printf("Usage: %s [-v|-h]\n", argv[0]); + printf("Usage: %s [-n|-h]\n", argv[0]); + printf("-n nonverbose\n"); + printf("-h help\n"); return 0; break; - case('v'): - verbose = 1; + case('n'): + verbose = 0; break; } }