mirror of
https://github.com/apache/nuttx.git
synced 2026-05-22 22:20:01 +08:00
net/socket/send.c: Fix a syslog format error
This commit is contained in:
committed by
Xiang Xiao
parent
8da52c82b4
commit
3297c09d58
+1
-1
@@ -110,7 +110,7 @@ ssize_t psock_send(FAR struct socket *psock, FAR const void *buf, size_t len,
|
||||
ret = psock->s_sockif->si_send(psock, buf, len, flags);
|
||||
if (ret < 0)
|
||||
{
|
||||
nerr("ERROR: socket si_send() (or usrsock_sendto()) failed: %d\n",
|
||||
nerr("ERROR: socket si_send() (or usrsock_sendto()) failed: %zd\n",
|
||||
ret);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user