aboutsummaryrefslogtreecommitdiffstats
path: root/filebutton.c
diff options
context:
space:
mode:
authorStéphane Aulery <saulery@free.fr>2014-11-08 18:00:26 +0100
committerGerd Hoffmann <kraxel@redhat.com>2014-11-17 14:31:49 +0100
commit6e81ca91fa8e62ca6fb5ba41c45bbd6a605d514c (patch)
tree23098f39c8e233100e892fd2615c2b4ee2c815b3 /filebutton.c
parentb1ad6e37beddb396f7cbd1fd1dca48036d85c016 (diff)
downloadfbida-6e81ca91fa8e62ca6fb5ba41c45bbd6a605d514c.tar.gz
Fix cppcheck warning %d in format string requires 'int' but the argument type is 'unsigned int'
Signed-off-by: Stéphane Aulery <saulery@free.fr> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'filebutton.c')
-rw-r--r--filebutton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/filebutton.c b/filebutton.c
index 3f922e2..b09d730 100644
--- a/filebutton.c
+++ b/filebutton.c
@@ -233,7 +233,7 @@ fileinfo_loader(XtPointer clientdata)
}
file->loader->done(file->wdata);
if (debug)
- fprintf(stderr,"LOADED: %s [%dx%d]\n",
+ fprintf(stderr,"LOADED: %s [%ux%u]\n",
file->filename, file->wimg.i.width, file->wimg.i.height);
/* resize image */
@@ -269,7 +269,7 @@ fileinfo_loader(XtPointer clientdata)
}
desc_resize.done(file->wdata);
if (debug)
- fprintf(stderr,"SCALED: %s [%dx%d]\n",
+ fprintf(stderr,"SCALED: %s [%ux%u]\n",
file->filename,file->simg.i.width,file->simg.i.height);
/* scale once more (small icon) */