diff options
author | Stéphane Aulery <saulery@free.fr> | 2014-11-08 18:00:26 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-11-17 14:31:49 +0100 |
commit | 6e81ca91fa8e62ca6fb5ba41c45bbd6a605d514c (patch) | |
tree | 23098f39c8e233100e892fd2615c2b4ee2c815b3 /fbi.c | |
parent | b1ad6e37beddb396f7cbd1fd1dca48036d85c016 (diff) | |
download | fbida-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 'fbi.c')
-rw-r--r-- | fbi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1140,7 +1140,7 @@ static char *make_info(struct ida_image *img, float scale) static char linebuffer[128]; snprintf(linebuffer, sizeof(linebuffer), - "%s%.0f%% %dx%d %d/%d", + "%s%.0f%% %ux%u %d/%d", fcurrent->tag ? "* " : "", scale*100, img->i.width, img->i.height, |