From f34e5ec79893f09c347f6f33831f7f09990956eb Mon Sep 17 00:00:00 2001 From: dak664 Date: Sat, 4 Dec 2010 21:06:04 +0000 Subject: [PATCH] Convert implicit printf to PRINTF --- core/net/rpl/rpl-icmp6.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/rpl/rpl-icmp6.c b/core/net/rpl/rpl-icmp6.c index dd22a9aa4..48a45ae4d 100644 --- a/core/net/rpl/rpl-icmp6.c +++ b/core/net/rpl/rpl-icmp6.c @@ -32,7 +32,7 @@ * * This file is part of the Contiki operating system. * - * $Id: rpl-icmp6.c,v 1.27 2010/11/03 15:41:23 adamdunkels Exp $ + * $Id: rpl-icmp6.c,v 1.28 2010/12/04 21:06:04 dak664 Exp $ */ /** * \file @@ -498,7 +498,7 @@ dao_input(void) /* Check if this is a DAO forwarding loop. */ p = rpl_find_parent(dag, &dao_sender_addr); if(p != NULL && DAG_RANK(p->rank, dag) < DAG_RANK(dag->rank, dag)) { - printf("RPL: Loop detected when receiving a unicast DAO from a node with a lower rank! (%u < %u)\n", + PRINTF("RPL: Loop detected when receiving a unicast DAO from a node with a lower rank! (%u < %u)\n", DAG_RANK(p->rank, dag), DAG_RANK(dag->rank, dag)); rpl_local_repair(dag); return;