Merge pull request #3168 from kolyshkin/fix-cc-warn

libct/nsenter: fix unused-result warning
This commit is contained in:
Akihiro Suda
2021-08-18 11:37:59 +09:00
committed by GitHub
+4 -1
View File
@@ -168,7 +168,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);