Fix type for assignment

The functions net_send_all() and net_recv_all() return ssize_t, not int.
This commit is contained in:
Romain Vimont 2021-07-15 18:16:56 +02:00
commit f78608ab29
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}