diff --git a/tests/periph_uart/main.c b/tests/periph_uart/main.c index 940e7456434d2c553f39d5ac5e10a9f9a2b5d0f4..8aaa58f7c1511b3934de248567c307333b30ff41 100644 --- a/tests/periph_uart/main.c +++ b/tests/periph_uart/main.c @@ -53,11 +53,11 @@ static int parse_dev(char *arg) { unsigned dev = (unsigned)atoi(arg); if (dev >= UART_NUMOF) { - printf("Error: Invalid UART_DEV device specified (%i).\n", dev); + printf("Error: Invalid UART_DEV device specified (%u).\n", dev); return -1; } else if (UART_DEV(dev) == UART_STDIO_DEV) { - printf("Error: The selected UART_DEV(%i) is used for the shell!\n", dev); + printf("Error: The selected UART_DEV(%u) is used for the shell!\n", dev); return -2; } return dev;