From 6e81ca91fa8e62ca6fb5ba41c45bbd6a605d514c Mon Sep 17 00:00:00 2001 From: Stéphane Aulery Date: Sat, 8 Nov 2014 18:00:26 +0100 Subject: Fix cppcheck warning %d in format string requires 'int' but the argument type is 'unsigned int' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Aulery Signed-off-by: Gerd Hoffmann --- op.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'op.c') 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); -- cgit