summaryrefslogtreecommitdiff
path: root/apps/examples/nximage
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-25 10:32:54 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-25 10:32:54 -0600
commitb756c4b51f51427339bf3649430f8470f64d7a8d (patch)
tree33df50ce9e2a880b0c892fd49e423bab8ed1d4a5 /apps/examples/nximage
parent40205b8ce91e12a08e7148670ca09eef74265843 (diff)
downloadnuttx-b756c4b51f51427339bf3649430f8470f64d7a8d.tar.gz
nuttx-b756c4b51f51427339bf3649430f8470f64d7a8d.tar.bz2
nuttx-b756c4b51f51427339bf3649430f8470f64d7a8d.zip
Fixes for more complaints from cppcheck
Diffstat (limited to 'apps/examples/nximage')
-rw-r--r--apps/examples/nximage/nximage_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/nximage/nximage_main.c b/apps/examples/nximage/nximage_main.c
index 0c3340a46..4b3d75dce 100644
--- a/apps/examples/nximage/nximage_main.c
+++ b/apps/examples/nximage/nximage_main.c
@@ -237,7 +237,7 @@ int nximage_main(int argc, char *argv[])
/* Set the background to the configured background color */
color = nximage_bgcolor();
- printf("nximage_main: Set background color=%d\n", color);
+ printf("nximage_main: Set background color=%u\n", color);
ret = nx_setbgcolor(g_nximage.hnx, &color);
if (ret < 0)