]> git.proxmox.com Git - qemu.git/blobdiff - cursor.c
Avoid asprintf() which is not available on mingw
[qemu.git] / cursor.c
index efc5917029a311091b53f26b14d44c4672ad641d..76e262caf7b986e5aedb6e26a4886e2aca3d0797 100644 (file)
--- a/cursor.c
+++ b/cursor.c
@@ -15,7 +15,8 @@ static QEMUCursor *cursor_parse_xpm(const char *xpm[])
     uint8_t idx;
 
     /* parse header line: width, height, #colors, #chars */
-    if (sscanf(xpm[line], "%d %d %d %d", &width, &height, &colors, &chars) != 4) {
+    if (sscanf(xpm[line], "%u %u %u %u",
+               &width, &height, &colors, &chars) != 4) {
         fprintf(stderr, "%s: header parse error: \"%s\"\n",
                 __FUNCTION__, xpm[line]);
         return NULL;