aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2023-01-12 06:05:58 +0200
committerLasse Collin <lasse.collin@tukaani.org>2023-01-12 06:05:58 +0200
commit52dc033d0bde0d19e3912303c6c74bae559d6498 (patch)
tree9d3ee423fdeceb51bbdbbd5b720d0fcc2728454a
parentxz: Silence warnings from -Wsign-conversion in a 32-bit build. (diff)
downloadxz-52dc033d0bde0d19e3912303c6c74bae559d6498.tar.xz
xz: Use ssize_t for the to-be-ignored return value from write(fd, ptr, 1).
It makes no difference here as the return value fits into an int too and it then gets ignored but this looks better.
-rw-r--r--src/xz/file_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xz/file_io.c b/src/xz/file_io.c
index a5841b37..aca9ebae 100644
--- a/src/xz/file_io.c
+++ b/src/xz/file_io.c
@@ -140,7 +140,7 @@ io_write_to_user_abort_pipe(void)
// handler. So ignore the errors and try to avoid warnings with
// GCC and glibc when _FORTIFY_SOURCE=2 is used.
uint8_t b = '\0';
- const int ret = write(user_abort_pipe[1], &b, 1);
+ const ssize_t ret = write(user_abort_pipe[1], &b, 1);
(void)ret;
return;
}