From 2b6a651233c022a1840bb681cc1841b68e097783 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Mon, 8 Feb 2010 21:59:21 +0000 Subject: [PATCH] Added missing include, made debug statement more explicit --- core/net/sicslowpan.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/net/sicslowpan.c b/core/net/sicslowpan.c index 8b2cab1a1..c0634a920 100644 --- a/core/net/sicslowpan.c +++ b/core/net/sicslowpan.c @@ -32,7 +32,7 @@ * * This file is part of the Contiki operating system. * - * $Id: sicslowpan.c,v 1.16 2010/02/06 20:50:24 adamdunkels Exp $ + * $Id: sicslowpan.c,v 1.17 2010/02/08 21:59:21 adamdunkels Exp $ */ /** * \file @@ -48,6 +48,7 @@ #include #include "contiki.h" +#include "dev/watchdog.h" #include "net/tcpip.h" #include "net/uip.h" #include "net/uip-netif.h" @@ -1373,7 +1374,7 @@ input(const struct mac_driver *r) * the packet is a fragment that does not belong to the packet * being reassembled or the packet is not a fragment. */ - PRINTFI("sicslowpan input: Dropping 6lowpan packet\n"); + PRINTFI("sicslowpan input: Dropping 6lowpan packet that is not a fragment of the packet currently being reassembled\n"); return; } } else {