From 331fd61115bfad22ff839b19b2769d25da604a86 Mon Sep 17 00:00:00 2001 From: Nathan Hartman <59230071+hartmannathan@users.noreply.github.com> Date: Fri, 19 Mar 2021 16:05:53 -0400 Subject: [PATCH] examples/qencoder/qe_main.c: Fix printf() format specifier examples/qencoder/qe_main.c: * main(): Call to printf() had "%d" but argument was int32_t, leading to compiler warning. Change format specifier to PRIi32 (suggested by Gregory Nutt). --- examples/qencoder/qe_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/qencoder/qe_main.c b/examples/qencoder/qe_main.c index e7bd5ca4f..8306a4d48 100644 --- a/examples/qencoder/qe_main.c +++ b/examples/qencoder/qe_main.c @@ -48,6 +48,7 @@ #include #include #include +#include #include #include @@ -300,7 +301,7 @@ int main(int argc, FAR char *argv[]) else { - printf("qe_main: %3d. %d\n", nloops+1, position); + printf("qe_main: %3d. %" PRIi32 "\n", nloops + 1, position); } /* Delay a little bit */