minor changes: typos and coding style

This commit is contained in:
fbernon
2009-07-09 10:21:16 +00:00
parent 1eee0be951
commit ce5699f41b
5 changed files with 10 additions and 10 deletions

View File

@@ -145,12 +145,12 @@ struct netconn {
/** TCP: when data passed to netconn_write doesn't fit into the send buffer,
this temporarily stores how much is already sent. */
size_t write_offset;
# if LWIP_TCPIP_CORE_LOCKING
#if LWIP_TCPIP_CORE_LOCKING
/** TCP: when data passed to netconn_write doesn't fit into the send buffer,
this temporarily stores whether to wake up the original application task
if data couldn't be sent in the first try. */
u8_t write_delayed;
# endif /* LWIP_TCPIP_CORE_LOCKING */
#endif /* LWIP_TCPIP_CORE_LOCKING */
#endif /* LWIP_TCP */
/** A callback function that is informed about events for this netconn */
netconn_callback callback;