1
0
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:
Joakim Gebart 2015-08-04 17:25:21 +02:00
parent 4055b807ec
commit e6a1366bec

View File

@ -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);