mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
libct/nsenter: fix unused-result warning
Commit2bab4a5resulted in a warning from gcc: nsexec.c: In function ‘write_log’: nsexec.c:171:2: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result] 171 | write(logfd, json, ret); | ^~~~~~~~~~~~~~~~~~~~~~~ As there's nothing we can or want to do in case write fails, let's just tell the compiler we're not going to use it. Fixes:2bab4a5Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com> (cherry picked from commitdb8330c9e5) Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
@@ -170,7 +170,10 @@ static void write_log(const char *level, const char *format, ...)
|
||||
goto out;
|
||||
}
|
||||
|
||||
write(logfd, json, ret);
|
||||
/* This logging is on a best-effort basis. In case of a short or failed
|
||||
* write there is nothing we can do, so just ignore write() errors.
|
||||
*/
|
||||
ssize_t __attribute__((unused)) __res = write(logfd, json, ret);
|
||||
|
||||
out:
|
||||
free(message);
|
||||
|
||||
Reference in New Issue
Block a user