Change return type of slip_send to void
The return value was not checked anywhere in the code
This commit is contained in:
parent
38df9fdfb2
commit
3e93e21646
@ -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;
|
||||||
|
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user