aboutsummaryrefslogtreecommitdiff
path: root/qemu-tool.c
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2012-01-16 01:46:52 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-01-19 08:13:24 +0000
commit49cb826e8f66760d377cb2028b4274b9538d36e4 (patch)
tree9307fcbfd8599dddbd29e76c35d4e1bc829e87e4 /qemu-tool.c
parent8c4ec5c0269bda18bb777a64b2008088d1c632dc (diff)
qemu-tool: Fix mixup of int64 and int64_t
Commit cbcfa0418f0c196afa765f5c9837b9344d1adcf3 (link the main loop and its dependencies into the tools) introduced stray usages of int64. Use int64_t instead. Signed-off-by: Andreas Färber <afaerber@suse.de> Cc: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'qemu-tool.c')
-rw-r--r--qemu-tool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-tool.c b/qemu-tool.c
index c73bf7152e..6b69668258 100644
--- a/qemu-tool.c
+++ b/qemu-tool.c
@@ -59,12 +59,12 @@ void monitor_protocol_event(MonitorEvent event, QObject *data)
{
}
-int64 cpu_get_clock(void)
+int64_t cpu_get_clock(void)
{
abort();
}
-int64 cpu_get_icount(void)
+int64_t cpu_get_icount(void)
{
abort();
}