diff options
Diffstat (limited to 'src/journal/journald-native.c')
-rw-r--r-- | src/journal/journald-native.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-native.c b/src/journal/journald-native.c index 851625de04..da3faef93e 100644 --- a/src/journal/journald-native.c +++ b/src/journal/journald-native.c @@ -433,7 +433,7 @@ int server_open_native_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->native_fd, 1); |