handle_ping_response function signature correction

This commit is contained in:
slvr 2013-08-10 19:55:54 +01:00
parent da8ef89e9d
commit 5b6465528f

View File

@ -190,7 +190,7 @@ int handle_ping_request(IP_Port source, uint8_t* packet, uint32_t length)
return 0;
}
int handle_ping_response(uint8_t* packet, uint32_t length, IP_Port source)
int handle_ping_response(IP_Port source, uint8_t* packet, uint32_t length)
{
pingres_t* p = (pingres_t*) packet;
int rc;