Made rimeaddr_t pointers const where they should be.

This commit is contained in:
adamdunkels 2009-11-08 19:40:16 +00:00
parent 8c040be133
commit 56218aba3b
32 changed files with 108 additions and 97 deletions

View file

@ -50,7 +50,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: unicast.h,v 1.4 2009/03/12 21:58:21 adamdunkels Exp $
* $Id: unicast.h,v 1.5 2009/11/08 19:40:18 adamdunkels Exp $
*/
/**
@ -71,7 +71,7 @@ struct unicast_conn;
BROADCAST_ATTRIBUTES
struct unicast_callbacks {
void (* recv)(struct unicast_conn *c, rimeaddr_t *from);
void (* recv)(struct unicast_conn *c, const rimeaddr_t *from);
};
struct unicast_conn {