diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-09-01 18:02:43 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-09-01 18:37:01 +0200 |
commit | e155a0aa04e899a535fc3b6a98ef6141181d710f (patch) | |
tree | e5cd701cd91b0936caac1da843d37f10e19a68dc /src/core | |
parent | f01327adb7e953ef7d2d0e2add92d6a1d484e2fc (diff) |
cgroup: small cleanups and coding style fixes
A number of simplications and adjustments to brings things closer to our
coding style.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index e232be88c0..f29a595097 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -2043,7 +2043,7 @@ finish: * kernel; at this point, we will not listen to the * signals anyway */ if (detect_container(NULL) <= 0) - cg_uninstall_release_agent(SYSTEMD_CGROUP_CONTROLLER); + (void) cg_uninstall_release_agent(SYSTEMD_CGROUP_CONTROLLER); execve(SYSTEMD_SHUTDOWN_BINARY_PATH, (char **) command_line, env_block); log_error_errno(errno, "Failed to execute shutdown binary, %s: %m", |