mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-22 04:53:50 +01:00
When setting the `ENABLE_DEBUG` flag to *1* in ip.c, the **rpl_udp** example won't compile, because the variable `addr_str` is also defined in **rpl_udp.h** as extern. Prefixing `addr_str` with `static` in ip.c solves this problem.