Fix compile with LWIP_TCPIP_CORE_LOCKING

This commit is contained in:
Dirk Ziegelmeier 2016-03-07 20:26:24 +01:00
parent 37d514c949
commit fc17d02451

View File

@ -63,7 +63,7 @@
static err_t netconn_close_shutdown(struct netconn *conn, u8_t how);
#if !LWIP_TCPIP_CORE_LOCKING
/**
* Call the lower part of a netconn_* function
* This function is then running in the thread context
@ -90,6 +90,7 @@ tcpip_apimsg(struct api_msg *apimsg)
}
return ERR_VAL;
}
#endif /* !LWIP_TCPIP_CORE_LOCKING */
/**
* Create a new netconn (of a specific type) that has a callback function.