Changed the parameter 'char * data' of process_start to the
type process_data_t. This was an artifact when the choice was made to use the void * type for the data parameter in processes. Changed parameter 'void * data' of process_post_synch to process_data_t for consistency. Checked all the uses of process_start() in contiki and fixed casts of the data parameter.
This commit is contained in:
parent
cff30a394b
commit
1058ea986a
14 changed files with 18 additions and 18 deletions
|
@ -162,7 +162,7 @@ recv_uc(struct unicast_conn *c, const linkaddr_t *from)
|
|||
|
||||
if(crc == crc16_data(msg->sendcmd, len, 0)) {
|
||||
/* Start the server process with the incoming command. */
|
||||
process_start(&shell_sendcmd_server_process, msg->sendcmd);
|
||||
process_start(&shell_sendcmd_server_process, (void *)msg->sendcmd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue