char is signed but uip_buf is unsigned

spi.h:
	casted unused values to void

autostart.c:
autostart.h:
        The array itself should be const but the processes pointed to
        should not.

profile-aggregates.c:
        sizeof returns unsigned long on my platform
This commit is contained in:
ksb 2007-11-18 12:27:44 +00:00
parent 46b6ce9193
commit 71dc988cb9
5 changed files with 18 additions and 18 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: autostart.c,v 1.2 2007/03/25 17:16:57 adamdunkels Exp $
* $Id: autostart.c,v 1.3 2007/11/18 12:27:45 ksb Exp $
*/
/**
@ -50,7 +50,7 @@
/*---------------------------------------------------------------------------*/
void
autostart_start(struct process *processes[])
autostart_start(struct process * const processes[])
{
int i;
@ -61,7 +61,7 @@ autostart_start(struct process *processes[])
}
/*---------------------------------------------------------------------------*/
void
autostart_exit(struct process *processes[])
autostart_exit(struct process * const processes[])
{
int i;