mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #2256 from Lotterleben/transceiver_debugf
transceiver: DEBUG instead of DEBUGF
This commit is contained in:
commit
bdae9b93bb
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user