]> git.proxmox.com Git - mirror_qemu.git/blobdiff - monitor.c
Merge remote-tracking branch 'qmp/queue/qmp' into staging
[mirror_qemu.git] / monitor.c
index c9f460ac46fe633830276d4b8f9e17e8ab82f797..cd735bbbebb3816454e063e35eb13c08916a9b6b 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -3223,11 +3223,7 @@ static int64_t expr_unary(Monitor *mon)
         break;
     default:
         errno = 0;
-#if TARGET_PHYS_ADDR_BITS > 32
         n = strtoull(pch, &p, 0);
-#else
-        n = strtoul(pch, &p, 0);
-#endif
         if (errno == ERANGE) {
             expr_error(mon, "number too large");
         }