summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-08-28 22:21:40 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-08-28 22:21:40 +0000
commit606b41e7020db7634fe90d069d2c019770c74b45 (patch)
tree02571f2db93cb4ca39f81ba89d1549e653326489
parent44486a89f0103ac9b39bfe8160adf83757d97450 (diff)
downloadqemu-606b41e7020db7634fe90d069d2c019770c74b45.tar.gz
Build fix for older GCCs.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3155 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--vl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index 3074d93c2e..d6f7e8d787 100644
--- a/vl.c
+++ b/vl.c
@@ -1172,7 +1172,7 @@ static void host_alarm_handler(int host_signum)
static uint64_t qemu_next_deadline(void)
{
- int64_t nearest_delta_us = ULLONG_MAX;
+ int64_t nearest_delta_us = ULONG_LONG_MAX;
int64_t vmdelta_us;
if (active_timers[QEMU_TIMER_REALTIME])