From 7b2c2d6bec9f2baeac3d0cff03537b276c26c274 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Thu, 21 Sep 2017 17:52:05 -0600 Subject: [PATCH] include/nuttx/net/net.h: Add missing semicolon in prototype. Fixes error in certain combinations of configuration options. --- include/nuttx/net/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/net/net.h b/include/nuttx/net/net.h index 46973eb7e6..2ea1b3da0f 100644 --- a/include/nuttx/net/net.h +++ b/include/nuttx/net/net.h @@ -137,7 +137,7 @@ struct sock_intf_s #ifdef CONFIG_NET_SENDFILE CODE ssize_t (*si_sendfile)(FAR struct socket *psock, FAR struct file *infile, FAR off_t *offset, - size_t count) + size_t count); #endif CODE ssize_t (*si_recvfrom)(FAR struct socket *psock, FAR void *buf, size_t len, int flags, FAR struct sockaddr *from,