summaryrefslogtreecommitdiffstats
path: root/src/journal/journald-wall.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-10-27 09:55:59 +0100
committerLennart Poettering <lennart@poettering.net>2020-10-27 14:06:49 +0100
commit74d6421da08ff2ef4b081644438c3eb86d17eac6 (patch)
treeff702dfbbec3f13dcbc67129949e1554f23a7e2d /src/journal/journald-wall.c
parentcore: clean up inactive/failed {service|scope}'s cgroups when the last proces... (diff)
downloadsystemd-74d6421da08ff2ef4b081644438c3eb86d17eac6.tar.xz
systemd-74d6421da08ff2ef4b081644438c3eb86d17eac6.zip
tree-wide: cast result of get_process_comm() to (void) where we ignore it
Diffstat (limited to 'src/journal/journald-wall.c')
-rw-r--r--src/journal/journald-wall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-wall.c b/src/journal/journald-wall.c
index 370c9b32e2..6134ba7414 100644
--- a/src/journal/journald-wall.c
+++ b/src/journal/journald-wall.c
@@ -27,7 +27,7 @@ void server_forward_wall(
if (ucred) {
if (!identifier) {
- get_process_comm(ucred->pid, &ident_buf);
+ (void) get_process_comm(ucred->pid, &ident_buf);
identifier = ident_buf;
}