From 76e03317c7c0522fc0435b879a9b2dcc049c642d Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Sat, 16 Aug 2008 10:04:55 +0000 Subject: [PATCH] Fixed problem with erroneous pointer type --- apps/shell/shell-rime.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/shell/shell-rime.c b/apps/shell/shell-rime.c index 20db8dbf0..36b0d7bcd 100644 --- a/apps/shell/shell-rime.c +++ b/apps/shell/shell-rime.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: shell-rime.c,v 1.8 2008/08/15 19:06:14 adamdunkels Exp $ + * $Id: shell-rime.c,v 1.9 2008/08/16 10:04:55 adamdunkels Exp $ */ /** @@ -453,8 +453,9 @@ send_collect(void *dummy) collect_send(&collect, COLLECT_REXMITS); } /*---------------------------------------------------------------------------*/ -static void -recv_netflood(struct netflood_conn *c) +static int +recv_netflood(struct netflood_conn *c, rimeaddr_t *from, + rimeaddr_t *originator, uint8_t seqno, uint8_t hops) { struct netflood_msg *msg; @@ -463,6 +464,7 @@ recv_netflood(struct netflood_conn *c) ctimer_set(&ctimer, random_rand() % (CLOCK_SECOND * 8), send_collect, NULL); } + return 1; } const static struct netflood_callbacks netflood_callbacks = { recv_netflood, NULL, NULL };