aboutsummaryrefslogtreecommitdiffstats
path: root/op.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 /op.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 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index b4e95fe..862d297 100644
--- a/op.c
+++ b/op.c
@@ -215,7 +215,7 @@ op_autocrop_init(struct ida_image *src, struct ida_rect *unused,
free(img.data);
if (debug)
- fprintf(stderr,"y: %d-%d/%d -- x: %d-%d/%d\n",
+ fprintf(stderr,"y: %d-%d/%u -- x: %d-%d/%u\n",
rect.y1, rect.y2, img.i.height,
rect.x1, rect.x2, img.i.width);