X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcgls%2Fcgls.c;h=7070503d68c1f3c6aeb92fe354806181aefcda97;hp=1840594ff6255d8db38afe238b1e691ce36f47e5;hb=ed6d629a3487105e31415db9e175dd698ac20125;hpb=13be49798cc4d1bdf84780b6a315e920f20fa11a diff --git a/src/cgls/cgls.c b/src/cgls/cgls.c index 1840594ff..7070503d6 100644 --- a/src/cgls/cgls.c +++ b/src/cgls/cgls.c @@ -46,8 +46,7 @@ static bool arg_all = false; static int arg_full = -1; static char* arg_machine = NULL; -static int help(void) { - +static void help(void) { printf("%s [OPTIONS...] [CGROUP...]\n\n" "Recursively show control group contents.\n\n" " -h --help Show this help\n" @@ -56,10 +55,8 @@ static int help(void) { " -a --all Show all groups, including empty\n" " -l --full Do not ellipsize output\n" " -k Include kernel threads in output\n" - " -M --machine Show container\n", - program_invocation_short_name); - - return 0; + " -M --machine Show container\n" + , program_invocation_short_name); } static int parse_argv(int argc, char *argv[]) { @@ -84,12 +81,13 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 1); assert(argv); - while ((c = getopt_long(argc, argv, "hkalM:", options, NULL)) >= 0) { + while ((c = getopt_long(argc, argv, "hkalM:", options, NULL)) >= 0) switch (c) { case 'h': - return help(); + help(); + return 0; case ARG_VERSION: puts(PACKAGE_STRING); @@ -122,7 +120,6 @@ static int parse_argv(int argc, char *argv[]) { default: assert_not_reached("Unhandled option"); } - } return 1; } @@ -130,8 +127,8 @@ static int parse_argv(int argc, char *argv[]) { int main(int argc, char *argv[]) { int r = 0, retval = EXIT_FAILURE; int output_flags; - char _cleanup_free_ *root = NULL; - _cleanup_bus_unref_ sd_bus *bus = NULL; + _cleanup_free_ char *root = NULL; + _cleanup_bus_close_unref_ sd_bus *bus = NULL; log_parse_environment(); log_open(); @@ -215,7 +212,7 @@ int main(int argc, char *argv[]) { path = unit_dbus_path_from_name(scope); if (!path) { - r = log_oom(); + log_oom(); goto finish; } @@ -242,7 +239,7 @@ int main(int argc, char *argv[]) { root = strdup(cgroup); if (!root) { - r = log_oom(); + log_oom(); goto finish; }