1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 10:25:37 +03:00

journal: cast to (void) where we knowingly ignore syscall returns

This commit is contained in:
Lennart Poettering 2018-01-23 19:07:06 +01:00
parent 5b7e1d8ef0
commit efb8fd6e75

View File

@ -416,7 +416,7 @@ _public_ int sd_journal_stream_fd(const char *identifier, int priority, int leve
if (shutdown(fd, SHUT_RD) < 0)
return -errno;
fd_inc_sndbuf(fd, SNDBUF_SIZE);
(void) fd_inc_sndbuf(fd, SNDBUF_SIZE);
identifier = strempty(identifier);