PRINTF()ed debugging output
This commit is contained in:
parent
f4976f8800
commit
12b6f35ce7
1 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: phase.c,v 1.10 2010/04/06 21:37:54 nvt-se Exp $
|
* $Id: phase.c,v 1.11 2010/04/27 12:56:35 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -127,7 +127,7 @@ phase_update(const struct phase_list *list,
|
||||||
if(mac_status == MAC_TX_OK && e == NULL) {
|
if(mac_status == MAC_TX_OK && e == NULL) {
|
||||||
e = memb_alloc(list->memb);
|
e = memb_alloc(list->memb);
|
||||||
if(e == NULL) {
|
if(e == NULL) {
|
||||||
printf("phase alloc NULL\n");
|
PRINTF("phase alloc NULL\n");
|
||||||
/* We could not allocate memory for this phase, so we drop
|
/* We could not allocate memory for this phase, so we drop
|
||||||
the last item on the list and reuse it for our phase. */
|
the last item on the list and reuse it for our phase. */
|
||||||
e = list_chop(*list->list);
|
e = list_chop(*list->list);
|
||||||
|
|
Loading…
Reference in a new issue