X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fsleep%2Fsleep.c;h=8da050cd7ed0c5af274219a4ff903eb22c14d518;hb=bdd13f6be4b588568683a1ab54f421fc6a636dbb;hp=a56ab89e544133d36cbd03400e333f4c270dac0f;hpb=19adb8a3204fefd91411b5f0f350c8bc6bcf75fe;p=elogind.git diff --git a/src/sleep/sleep.c b/src/sleep/sleep.c index a56ab89e5..8da050cd7 100644 --- a/src/sleep/sleep.c +++ b/src/sleep/sleep.c @@ -57,15 +57,14 @@ static int write_mode(char **modes) { return r; } -static int write_state(FILE *f0, char **states) { - FILE _cleanup_fclose_ *f = f0; +static int write_state(FILE **f, char **states) { char **state; int r = 0; STRV_FOREACH(state, states) { int k; - k = write_string_to_file(f, *state); + k = write_string_to_file(*f, *state); if (k == 0) return 0; log_debug("Failed to write '%s' to /sys/power/state: %s", @@ -73,9 +72,9 @@ static int write_state(FILE *f0, char **states) { if (r == 0) r = k; - fclose(f); - f = fopen("/sys/power/state", "we"); - if (!f) { + fclose(*f); + *f = fopen("/sys/power/state", "we"); + if (!*f) { log_error("Failed to open /sys/power/state: %m"); return -errno; } @@ -87,11 +86,11 @@ static int write_state(FILE *f0, char **states) { static int execute(char **modes, char **states) { char* arguments[4]; int r; - FILE *f; + _cleanup_fclose_ FILE *f = NULL; const char* note = strappenda("SLEEP=", arg_verb); /* This file is opened first, so that if we hit an error, - * we can abort before modyfing any state. */ + * we can abort before modifying any state. */ f = fopen("/sys/power/state", "we"); if (!f) { log_error("Failed to open /sys/power/state: %m"); @@ -115,7 +114,7 @@ static int execute(char **modes, char **states) { note, NULL); - r = write_state(f, states); + r = write_state(&f, states); if (r < 0) return r; @@ -154,7 +153,7 @@ static int parse_argv(int argc, char *argv[]) { static const struct option options[] = { { "help", no_argument, NULL, 'h' }, { "version", no_argument, NULL, ARG_VERSION }, - { NULL, 0, NULL, 0 } + {} }; int c; @@ -165,8 +164,7 @@ static int parse_argv(int argc, char *argv[]) { while ((c = getopt_long(argc, argv, "+h", options, NULL)) >= 0) switch(c) { case 'h': - help(); - return 0 /* done */; + return help(); case ARG_VERSION: puts(PACKAGE_STRING); @@ -177,8 +175,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"); } if (argc - optind != 1) {