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

gnrc_icmpv6: Clean up redundant conditional debug statement

This commit is contained in:
Joakim Nohlgård 2017-08-09 12:24:28 +02:00
parent e5baef3810
commit 8415c4eebc

View File

@ -50,13 +50,8 @@ gnrc_pktsnip_t *gnrc_icmpv6_echo_build(uint8_t type, uint16_t id, uint16_t seq,
DEBUG(", payload:\n"); DEBUG(", payload:\n");
od_hex_dump(data, data_len, OD_WIDTH_DEFAULT); od_hex_dump(data, data_len, OD_WIDTH_DEFAULT);
#endif #endif
DEBUG("\n");
} }
#if ENABLE_DEBUG
else {
DEBUG("\n"); DEBUG("\n");
}
#endif
return pkt; return pkt;
} }