mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-25 06:23:53 +01:00
ng_sixlowpan: Fix typo in preprocessor condition for calling pktbuf statistics
This commit is contained in:
parent
4055b807ec
commit
e6a1366bec
@ -69,7 +69,7 @@ static void _receive(ng_pktsnip_t *pkt)
|
||||
|
||||
if (payload == NULL) {
|
||||
DEBUG("6lo: can not get write access on received packet\n");
|
||||
#if defined(DEVELHELP) && defined(ENABLE_DEBUG)
|
||||
#if defined(DEVELHELP) && ENABLE_DEBUG
|
||||
ng_pktbuf_stats();
|
||||
#endif
|
||||
ng_pktbuf_release(pkt);
|
||||
@ -95,7 +95,7 @@ static void _receive(ng_pktsnip_t *pkt)
|
||||
|
||||
if (payload == NULL) {
|
||||
DEBUG("6lo: can not get write access on received packet\n");
|
||||
#if defined(DEVELHELP) && defined(ENABLE_DEBUG)
|
||||
#if defined(DEVELHELP) && ENABLE_DEBUG
|
||||
ng_pktbuf_stats();
|
||||
#endif
|
||||
ng_pktbuf_release(pkt);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user