From 8727159fa333a1aab7cead2928cfca06a9ec00fd Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 11 Feb 2015 09:30:30 -0600 Subject: Networking: Fix a compilation error recently introduced into the raw packet logic --- nuttx/net/socket/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuttx/net/socket/socket.c b/nuttx/net/socket/socket.c index 6e2ea303b..e44adeb3a 100644 --- a/nuttx/net/socket/socket.c +++ b/nuttx/net/socket/socket.c @@ -471,7 +471,7 @@ int psock_socket(int domain, int type, int protocol, FAR struct socket *psock) #ifdef CONFIG_NET_PKT case SOCK_RAW: { - ret = psock_pkt_alloc(FAR struct socket *psock) + ret = psock_pkt_alloc(psock); if (ret < 0) { /* Failed to reserve a connection structure */ -- cgit v1.2.3