mirror of
https://git.busybox.net/busybox
synced 2026-02-06 03:58:59 +00:00
avoid signed<->unsigned warning
This commit is contained in:
parent
57545c810a
commit
7600eec732
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue