From 2e5d97366a983ad8d769b1f0eaef9d311d53352b Mon Sep 17 00:00:00 2001 From: nvt-se Date: Fri, 9 Apr 2010 16:21:07 +0000 Subject: [PATCH] ensure matching format and type in debug printf --- core/net/rime/ctimer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/rime/ctimer.c b/core/net/rime/ctimer.c index e25d38cfc..15e23d678 100644 --- a/core/net/rime/ctimer.c +++ b/core/net/rime/ctimer.c @@ -33,7 +33,7 @@ * * This file is part of the Contiki operating system. * - * $Id: ctimer.c,v 1.7 2010/02/05 19:13:05 oliverschmidt Exp $ + * $Id: ctimer.c,v 1.8 2010/04/09 16:21:07 nvt-se Exp $ */ /** @@ -101,7 +101,7 @@ void ctimer_set(struct ctimer *c, clock_time_t t, void (*f)(void *), void *ptr) { - PRINTF("ctimer_set %p %d\n", c, t); + PRINTF("ctimer_set %p %u\n", c, (unsigned)t); c->p = PROCESS_CURRENT(); c->f = f; c->ptr = ptr;