summaryrefslogtreecommitdiff
path: root/src/shared/log.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-11-07 16:33:03 +0100
committerLennart Poettering <lennart@poettering.net>2014-11-07 16:36:14 +0100
commitf9aa5413807e163df49171793eb93a230cd7b955 (patch)
tree37011c8b014e25212e58bbae9a90499410d0db06 /src/shared/log.c
parentf0e62e89970b8c38eb07a9beebd277ce13a5fcc2 (diff)
log: explicitly ignore return value of parse_proc_cmdline()
CID# 1251162
Diffstat (limited to 'src/shared/log.c')
-rw-r--r--src/shared/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/log.c b/src/shared/log.c
index 26c604afd..1c589ac46 100644
--- a/src/shared/log.c
+++ b/src/shared/log.c
@@ -910,7 +910,7 @@ static int parse_proc_cmdline_item(const char *key, const char *value) {
void log_parse_environment(void) {
const char *e;
- parse_proc_cmdline(parse_proc_cmdline_item);
+ (void) parse_proc_cmdline(parse_proc_cmdline_item);
e = secure_getenv("SYSTEMD_LOG_TARGET");
if (e && log_set_target_from_string(e) < 0)