From f8922d80c393929b7f9a2e46b09a6bac972adf68 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Fri, 13 Sep 2019 09:19:29 +0200 Subject: [PATCH] tests/periph_wdt: fix upper limit format for print --- tests/periph_wdt/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/periph_wdt/main.c b/tests/periph_wdt/main.c index 5af4a24ba2..538a3d81f0 100644 --- a/tests/periph_wdt/main.c +++ b/tests/periph_wdt/main.c @@ -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; }