From 6f066fca823af121e5502e791dd3be88fb045c24 Mon Sep 17 00:00:00 2001 From: softins Date: Wed, 21 Jul 2004 08:55:26 +0000 Subject: [PATCH] Changed recv_raw() from int to u8_t, to match prototype of raw_recv() in raw.h and so avoid compiler error. --- src/api/api_msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/api_msg.c b/src/api/api_msg.c index a05bb858..0cbe626f 100644 --- a/src/api/api_msg.c +++ b/src/api/api_msg.c @@ -38,7 +38,7 @@ #include "lwip/tcpip.h" #if LWIP_RAW -static int +static u8_t recv_raw(void *arg, struct raw_pcb *pcb, struct pbuf *p, struct ip_addr *addr) {