From 54fc0fd2a8fce9b7e1c4de57e2b25a7c11097392 Mon Sep 17 00:00:00 2001 From: Matthias Kolja Miehl <miehl@w3hs.net> Date: Sun, 21 Aug 2016 16:54:22 +0200 Subject: [PATCH] tests/driver_dht: fix invalidPrintfArgType_sint Since the argument type is 'unsigned int', the printf format string has to be '%u' instead of '%i'. --- tests/driver_dht/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/driver_dht/main.c b/tests/driver_dht/main.c index aa651e0a86..9edfed2576 100644 --- a/tests/driver_dht/main.c +++ b/tests/driver_dht/main.c @@ -53,7 +53,7 @@ int main(void) int_hum = hum / 10; dec_hum = hum - (int_hum * 10); - printf("DHT device #%i - ", i); + printf("DHT device #%u - ", i); printf("temp: %i.%i°C, ", int_temp, dec_temp); printf("relative humidity: %i.%i%%\n", int_hum, dec_hum); -- GitLab