Change return type of slip_send to void

The return value was not checked anywhere in the code
This commit is contained in:
George Oikonomou 2017-11-22 16:13:48 +00:00
parent 38df9fdfb2
commit 3e93e21646
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ slip_set_input_callback(void (*c)(void))
input_callback = c; input_callback = c;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
uint8_t void
slip_send(void) slip_send(void)
{ {
uint16_t i; uint16_t i;

View File

@ -41,7 +41,7 @@ PROCESS_NAME(slip_process);
/** /**
* Send an IP packet from the uIP buffer with SLIP. * Send an IP packet from the uIP buffer with SLIP.
*/ */
uint8_t slip_send(void); void slip_send(void);
/** /**
* Input a SLIP byte. * Input a SLIP byte.