summary refs log tree commit diff stats
path: root/hw/display/qxl-logger.c
diff options
context:
space:
mode:
authorAlex Chen <alex.chen@huawei.com>2020-11-19 02:58:51 +0000
committerGerd Hoffmann <kraxel@redhat.com>2021-02-04 14:32:40 +0100
commitada6f6f4a34351c1320d30e4fc495c1d536bd19c (patch)
tree941e792a47f4d0679fbcdf3090c45b20dcdcf695 /hw/display/qxl-logger.c
parentdb754f8ccaf2f073c9aed46a4389e9c0c2080399 (diff)
downloadfocaccia-qemu-ada6f6f4a34351c1320d30e4fc495c1d536bd19c.tar.gz
focaccia-qemu-ada6f6f4a34351c1320d30e4fc495c1d536bd19c.zip
hw/display/qxl: Fix bad printf format specifiers
We should use printf format specifier "%u" instead of "%d" for
argument of type "unsigned int".

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: Alex Chen <alex.chen@huawei.com>
Message-id: 20201119025851.56487-1-alex.chen@huawei.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display/qxl-logger.c')
-rw-r--r--hw/display/qxl-logger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/display/qxl-logger.c b/hw/display/qxl-logger.c
index c15175bce3..68bfa47568 100644
--- a/hw/display/qxl-logger.c
+++ b/hw/display/qxl-logger.c
@@ -189,7 +189,7 @@ static void qxl_log_cmd_surface(PCIQXLDevice *qxl, QXLSurfaceCmd *cmd)
             qxl_name(qxl_surface_cmd, cmd->type),
             cmd->surface_id);
     if (cmd->type == QXL_SURFACE_CMD_CREATE) {
-        fprintf(stderr, " size %dx%d stride %d format %s (count %d, max %d)",
+        fprintf(stderr, " size %dx%d stride %d format %s (count %u, max %u)",
                 cmd->u.surface_create.width,
                 cmd->u.surface_create.height,
                 cmd->u.surface_create.stride,
@@ -197,7 +197,7 @@ static void qxl_log_cmd_surface(PCIQXLDevice *qxl, QXLSurfaceCmd *cmd)
                 qxl->guest_surfaces.count, qxl->guest_surfaces.max);
     }
     if (cmd->type == QXL_SURFACE_CMD_DESTROY) {
-        fprintf(stderr, " (count %d)", qxl->guest_surfaces.count);
+        fprintf(stderr, " (count %u)", qxl->guest_surfaces.count);
     }
 }