qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 4/4] Fix warning in kvm-all.c


From: Alexander Graf
Subject: [Qemu-devel] [PATCH 4/4] Fix warning in kvm-all.c
Date: Thu, 16 Jul 2009 19:52:16 +0200

This fixes a warning I stumbled across while compiling qemu on PPC64.

Signed-off-by: Alexander Graf <address@hidden>
---
 kvm-all.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kvm-all.c b/kvm-all.c
index 8567ac9..961fa32 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -226,7 +226,7 @@ static int kvm_dirty_pages_log_change(target_phys_addr_t 
phys_addr,
     if (mem == NULL)  {
             fprintf(stderr, "BUG: %s: invalid parameters " TARGET_FMT_plx "-"
                     TARGET_FMT_plx "\n", __func__, phys_addr,
-                    phys_addr + size - 1);
+                    (target_phys_addr_t)(phys_addr + size - 1));
             return -EINVAL;
     }
 
-- 
1.6.0.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]