cn-uofbasel / ccn-lite

CCN-lite, a lightweight implementation of the CCNx protocol and its variations
ISC License
74 stars 63 forks source link

RIOT support: Added cast to debug message #390

Closed fzi-haxel closed 8 months ago

fzi-haxel commented 11 months ago

Contribution description

Minor change to fix compiler warning.

contlen is of type size_t. Depending on the platform, this may have a different size than unsigned int. According to the RIOT encoding conventions, size_t variables should be converted to unsigned in printouts if possible, since %zu' is not supported bynewlib-nano`.