From 4f4fbf77ade902f929959b0e10fbf7e56bb85816 Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 25 Jun 2006 18:28:12 +0000 Subject: [PATCH] 64 bit support git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2019 c046a42c-6fe2-441c-8c8c-71466251a162 --- monitor.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/monitor.c b/monitor.c index e495c5096..9a18639c4 100644 --- a/monitor.c +++ b/monitor.c @@ -1584,8 +1584,11 @@ static target_long expr_unary(void) n = 0; break; default: - /* XXX: 64 bit version */ +#if TARGET_LONG_BITS == 64 + n = strtoull(pch, &p, 0); +#else n = strtoul(pch, &p, 0); +#endif if (pch == p) { expr_error("invalid char in expression"); } -- 2.39.2