Updated debug printouts

This commit is contained in:
adamdunkels 2008-01-23 16:10:10 +00:00
parent f4dd9ccd5b
commit 29cc2b1266
2 changed files with 8 additions and 8 deletions

View file

@ -33,7 +33,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: ibc.c,v 1.11 2008/01/08 07:55:15 adamdunkels Exp $
* $Id: ibc.c,v 1.12 2008/01/23 16:10:10 adamdunkels Exp $
*/
/**
@ -69,8 +69,9 @@ recv_from_abc(struct abc_conn *bc)
rimeaddr_copy(&sender, &hdr->sender);
rimebuf_hdrreduce(sizeof(struct ibc_hdr));
PRINTF("%d.%d: ibc: recv_from_bc\n",
rimeaddr_node_addr.u8[0],rimeaddr_node_addr.u8[1]);
PRINTF("%d.%d: ibc: from %d.%d\n",
rimeaddr_node_addr.u8[0],rimeaddr_node_addr.u8[1],
sender.u8[0], sender.u8[1]);
c->u->recv(c, &sender);
}
/*---------------------------------------------------------------------------*/