diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-04-12 22:43:08 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-04-12 22:45:06 -0400 |
commit | 4a61c3e51e96a747c30598d78ee3a24e7c569e9f (patch) | |
tree | e7042a97a1bc33c99bf27776bb46937347dd7f15 /src/journal/journald-stream.c | |
parent | 2ae4842b6c8b7c3445bceaa8bfc8d019a7d9edcd (diff) |
journal: use (void) to silence coverity
This shouldn't really fail and anyway not much we can do about it.
CID #996292, #996294, #996295.
Diffstat (limited to 'src/journal/journald-stream.c')
-rw-r--r-- | src/journal/journald-stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-stream.c b/src/journal/journald-stream.c index bc5b26d118..b572147a56 100644 --- a/src/journal/journald-stream.c +++ b/src/journal/journald-stream.c @@ -720,7 +720,7 @@ int server_open_stdout_socket(Server *s, FDSet *fds) { if (r < 0) return log_error_errno(errno, "bind(%s) failed: %m", sa.un.sun_path); - chmod(sa.un.sun_path, 0666); + (void) chmod(sa.un.sun_path, 0666); if (listen(s->stdout_fd, SOMAXCONN) < 0) return log_error_errno(errno, "listen(%s) failed: %m", sa.un.sun_path); |