Fixed compiler warnings to make code compile with gcc's -pedantic switch

This commit is contained in:
adamdunkels 2007-11-17 18:16:48 +00:00
parent 2f50fe9c57
commit 33d7c0badd

View file

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: tcprudolph0.c,v 1.7 2007/04/02 20:02:13 adamdunkels Exp $ * @(#)$Id: tcprudolph0.c,v 1.8 2007/11/17 18:16:48 adamdunkels Exp $
*/ */
#include <stdio.h> #include <stdio.h>
@ -198,7 +198,7 @@ PT_THREAD(recv_tcpthread(struct pt *pt))
/*---------------------------------------------------------------------*/ /*---------------------------------------------------------------------*/
static void static void
write_chunk(struct rudolph0_conn *c, int offset, int flag, write_chunk(struct rudolph0_conn *c, int offset, int flag,
char *data, int datalen) uint8_t *data, int datalen)
{ {
int fd; int fd;
@ -234,7 +234,7 @@ write_chunk(struct rudolph0_conn *c, int offset, int flag,
} }
} }
static int static int
read_chunk(struct rudolph0_conn *c, int offset, char *to, int maxsize) read_chunk(struct rudolph0_conn *c, int offset, uint8_t *to, int maxsize)
{ {
int fd; int fd;
int ret; int ret;
@ -304,8 +304,8 @@ dummy(void)
/* Make sure that all Rime modules are present in the core */ /* Make sure that all Rime modules are present in the core */
tree_close(NULL); tree_close(NULL);
mesh_close(NULL); mesh_close(NULL);
uibc_close(NULL); ipolite_close(NULL);
uabc_close(NULL); polite_close(NULL);
ruc_close(NULL); ruc_close(NULL);
sibc_close(NULL); sibc_close(NULL);
rudolph0_close(NULL); rudolph0_close(NULL);