diff options
-rw-r--r-- | libbb/copyfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/copyfd.c b/libbb/copyfd.c index fcae8d3..0976180 100644 --- a/libbb/copyfd.c +++ b/libbb/copyfd.c @@ -57,7 +57,7 @@ static ssize_t bb_full_fd_action(int src_fd, int dst_fd, size_t size) out: RELEASE_CONFIG_BUFFER(buffer); - return status ? status : total; + return status ? status : (ssize_t)total; } |