1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 00:41:17 +01:00

transceiver: DEBUG instead of DEBUGF

Switch two calls to DEBUGF() to DEBUG() because they lead to compliling complcations and the additional output provided by DEBUG isn't really necessary here.
This commit is contained in:
Lotte Steenbrink 2015-01-06 08:29:29 -08:00
parent 6ca8221d0a
commit 7dc31402d3

View File

@ -437,7 +437,7 @@ static void receive_packet(uint16_t type, uint8_t pos)
/* inform upper layers of lost packet */
m.type = ENOBUFFER;
m.content.value = t;
DEBUGF("transceiver: buffer size exceeded, dropping packet\n");
DEBUG("transceiver: buffer size exceeded, dropping packet\n");
}
/* copy packet and handle it */
else {
@ -523,7 +523,7 @@ static void receive_packet(uint16_t type, uint8_t pos)
transceiver_buffer[transceiver_buffer_pos].processing++;
}
else {
DEBUGF("transceiver: failed to notify upper layer.\n");
DEBUG("transceiver: failed to notify upper layer.\n");
}
}