mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-08-02 14:19:05 +00:00
Fix type for assignment
The functions net_send_all() and net_recv_all() return ssize_t, not int.
This commit is contained in:
parent
6f03022646
commit
f78608ab29
2 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ process_msg(struct controller *controller,
|
|||
if (!length) {
|
||||
return false;
|
||||
}
|
||||
int w = net_send_all(controller->control_socket, serialized_msg, length);
|
||||
ssize_t w = net_send_all(controller->control_socket, serialized_msg, length);
|
||||
return (size_t) w == length;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue