diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-17 23:47:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-17 23:47:59 +0200 |
commit | 8745297f9853c4a17bac69e1b7e652fe81bc1940 (patch) | |
tree | dfc55ba1ca4296fcdbe03983fc434c80d3465c7b | |
parent | 634826b51b074b2e6d9314031bdd9abdcf862b54 (diff) |
gcc: disable warn_unused_result attribute warnings
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/path-lookup.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1d358d2c88..6e28bfcad0 100644 --- a/configure.ac +++ b/configure.ac @@ -80,6 +80,7 @@ CC_CHECK_CFLAGS_APPEND([ \ -Wno-overlength-strings \ -Wno-unused-parameter \ -Wno-missing-field-initializers \ + -Wno-unused-result \ -Wp,-D_FORTIFY_SOURCE=2 \ -ffast-math \ -fno-common \ diff --git a/src/path-lookup.c b/src/path-lookup.c index 7a5b9b813e..093e04de37 100644 --- a/src/path-lookup.c +++ b/src/path-lookup.c @@ -96,7 +96,7 @@ static char** session_dirs(void) { * one. */ mkdir_parents(data_home, 0777); - symlink("../../../.config/systemd/session", data_home); + (void) symlink("../../../.config/systemd/session", data_home); } if ((e = getenv("XDG_DATA_DIRS"))) |