From 4a61c3e51e96a747c30598d78ee3a24e7c569e9f Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Sun, 12 Apr 2015 22:43:08 -0400 Subject: journal: use (void) to silence coverity This shouldn't really fail and anyway not much we can do about it. CID #996292, #996294, #996295. --- src/journal/journald-syslog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/journal/journald-syslog.c') diff --git a/src/journal/journald-syslog.c b/src/journal/journald-syslog.c index 26fdf62acd..90b7530946 100644 --- a/src/journal/journald-syslog.c +++ b/src/journal/journald-syslog.c @@ -398,7 +398,7 @@ int server_open_syslog_socket(Server *s) { 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); } else fd_nonblock(s->syslog_fd, 1); -- cgit v1.2.3-54-g00ecf