Skip to content
Snippets Groups Projects
Commit a6c14dad authored by Yonezawa-T2's avatar Yonezawa-T2
Browse files

gnrc_sixlowpan_iphc: fix compile error for debug output

parent a10151d5
No related branches found
No related tags found
No related merge requests found
...@@ -575,7 +575,7 @@ inline static size_t iphc_nhc_udp_encode(gnrc_pktsnip_t *udp, ipv6_hdr_t *ipv6_h ...@@ -575,7 +575,7 @@ inline static size_t iphc_nhc_udp_encode(gnrc_pktsnip_t *udp, ipv6_hdr_t *ipv6_h
else { else {
/* shrink udp allocation to final size */ /* shrink udp allocation to final size */
gnrc_pktbuf_realloc_data(udp, nhc_len); gnrc_pktbuf_realloc_data(udp, nhc_len);
DEBUG("6lo iphc nhc: set udp len to %d\n", nhc_len); DEBUG("6lo iphc nhc: set udp len to %d\n", (int) nhc_len);
} }
return nhc_len; return nhc_len;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment