From 977fdc7f03f9abaefc56b48b4e7ef0e5ee0aad69 Mon Sep 17 00:00:00 2001 From: nvt-se Date: Sun, 18 Nov 2007 11:21:29 +0000 Subject: [PATCH] Format requires unsigned long. --- core/net/uaodv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/uaodv.c b/core/net/uaodv.c index e1da3b6d5..4823354be 100644 --- a/core/net/uaodv.c +++ b/core/net/uaodv.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: uaodv.c,v 1.33 2007/11/17 18:05:21 adamdunkels Exp $ + * $Id: uaodv.c,v 1.34 2007/11/18 11:21:29 nvt-se Exp $ */ /** @@ -584,7 +584,7 @@ PROCESS_THREAD(uaodv_process, ev, data) PROCESS_BEGIN(); - printf("uaodv_process starting %lu\n", my_hseqno); + printf("uaodv_process starting %lu\n", (unsigned long) my_hseqno); bcastconn = udp_broadcast_new(HTONS(UAODV_UDPPORT), NULL); unicastconn = udp_broadcast_new(HTONS(UAODV_UDPPORT), NULL);