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

tests/gnrc_udp: fix printf format string (%d->%u).

This was causing the CI build to fail in the static-check stage
(cppcheck).
This commit is contained in:
Juan Carrano 2019-04-11 11:26:02 +02:00
parent 54cbdaaa53
commit c0af4237d8

View File

@ -60,7 +60,7 @@ static void *_eventloop(void *arg)
switch (msg.type) {
case GNRC_NETAPI_MSG_TYPE_RCV:
printf("Packets received: %d\n", ++rcv_count);
printf("Packets received: %u\n", ++rcv_count);
gnrc_pktbuf_release(msg.content.ptr);
break;
case GNRC_NETAPI_MSG_TYPE_GET: