style(usocket): Remove trailing space at EOL

master
zhaozg 2022-08-30 15:20:24 +08:00 committed by Caleb Maclennan
parent 88c72acd77
commit 159890c366
No known key found for this signature in database
GPG Key ID: B538286DE04ECFE5
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ int socket_sendto(p_socket ps, const char *data, size_t count, size_t *sent,
*sent = 0;
if (*ps == SOCKET_INVALID) return IO_CLOSED;
for ( ;; ) {
long put = (long) sendto(*ps, data, count, 0, addr, len);
long put = (long) sendto(*ps, data, count, 0, addr, len);
if (put >= 0) {
*sent = put;
return IO_DONE;