]> git.proxmox.com Git - mirror_qemu.git/commitdiff
curses: fix wchar_t printf warning
authorGerd Hoffmann <kraxel@redhat.com>
Tue, 2 Apr 2019 07:30:18 +0000 (09:30 +0200)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 12 Apr 2019 11:58:00 +0000 (12:58 +0100)
On some systems wchar_t is "long int", on others just "int".
So go cast to "long int" and adjust the printf format accordingly.

Reported-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190402073018.17747-1-kraxel@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
ui/curses.c

index cc6d6da6846394cbbb611bcc6e6d0f1a4355e20a..fb63945188b2affe70ed23c76231456af07afd36 100644 (file)
@@ -453,8 +453,8 @@ static uint16_t get_ucs(wchar_t wch, iconv_t conv)
     swch = sizeof(wch);
 
     if (iconv(conv, &pwch, &swch, &pch, &sch) == (size_t) -1) {
-        fprintf(stderr, "Could not convert 0x%02x from WCHAR_T to UCS-2: %s\n",
-                        wch, strerror(errno));
+        fprintf(stderr, "Could not convert 0x%02lx from WCHAR_T to UCS-2: %s\n",
+                (unsigned long)wch, strerror(errno));
         return 0xFFFD;
     }