From 453d5f2866a86d2a70385c72f0a80753b9d48955 Mon Sep 17 00:00:00 2001 From: Diego Herranz Date: Fri, 7 May 2021 23:03:28 +0100 Subject: [PATCH] examples/hdc1008_demo: fix wrong printf parameter An extra "%d" that shouldn't be there --- examples/hdc1008_demo/hdc1008_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hdc1008_demo/hdc1008_main.c b/examples/hdc1008_demo/hdc1008_main.c index e6694665b..0cd72d284 100644 --- a/examples/hdc1008_demo/hdc1008_main.c +++ b/examples/hdc1008_demo/hdc1008_main.c @@ -78,7 +78,7 @@ int main(int argc, FAR char *argv[]) printf("Temperature and humidity\n" "========================\n"); - printf("data=%s%d\n\n", buf); + printf("data=%s\n\n", buf); /* Measure using ioctl */