1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #2256 from Lotterleben/transceiver_debugf

transceiver: DEBUG instead of DEBUGF
This commit is contained in:
Oleg Hahm 2015-01-06 17:50:41 +01:00
commit bdae9b93bb

View File

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