summaryrefslogtreecommitdiff
path: root/nuttx/net/recv.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/recv.c')
-rw-r--r--nuttx/net/recv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/net/recv.c b/nuttx/net/recv.c
index e03fbd495..135b6f319 100644
--- a/nuttx/net/recv.c
+++ b/nuttx/net/recv.c
@@ -69,7 +69,7 @@
*
****************************************************************************/
-ssize_t recv(int sockfd, void *buf, size_t len, int flags)
+ssize_t recv(int sockfd, FAR void *buf, size_t len, int flags)
{
return recvfrom(sockfd, buf, len, flags, NULL, 0);
}