X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fnotify%2Fnotify.c;h=a145b8fd1b7caf75defda64749d15e4742724f06;hb=4ef0809c22a7d15bae3865d44596ff6e3cdaf1cb;hp=a688a9f879840455913dbdfd559fb11ae5e9e0c0;hpb=6c12b52e19640747e96f89d85422941a23dc6b29;p=elogind.git diff --git a/src/notify/notify.c b/src/notify/notify.c index a688a9f87..a145b8fd1 100644 --- a/src/notify/notify.c +++ b/src/notify/notify.c @@ -77,7 +77,7 @@ static int parse_argv(int argc, char *argv[]) { { "status", required_argument, NULL, ARG_STATUS }, { "booted", no_argument, NULL, ARG_BOOTED }, { "readahead", required_argument, NULL, ARG_READAHEAD }, - { NULL, 0, NULL, 0 } + {} }; int c; @@ -90,8 +90,7 @@ static int parse_argv(int argc, char *argv[]) { switch (c) { case 'h': - help(); - return 0; + return help(); case ARG_VERSION: puts(PACKAGE_STRING); @@ -130,8 +129,7 @@ static int parse_argv(int argc, char *argv[]) { return -EINVAL; default: - log_error("Unknown option code %c", c); - return -EINVAL; + assert_not_reached("Unhandled option"); } }