tests/periph_wdt: fix upper limit format for print

This commit is contained in:
Alexandre Abadie 2019-09-13 09:19:29 +02:00
parent 40619d18ca
commit f8922d80c3
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -32,8 +32,8 @@ int get_range(int argc, char **argv)
{
(void)argc;
(void)argv;
printf("lower_bound: %d upper_bound: %d \n", NWDT_TIME_LOWER_LIMIT,
NWDT_TIME_UPPER_LIMIT);
printf("lower_bound: %d upper_bound: %"PRIu32" \n", NWDT_TIME_LOWER_LIMIT,
(uint32_t)NWDT_TIME_UPPER_LIMIT);
return 0;
}