mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
avoid signed<->unsigned warning
This commit is contained in:
parent
57545c810a
commit
7600eec732
@ -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 New Issue
Block a user