qemu-tool: Fix mixup of int64 and int64_t
authorAndreas Färber <afaerber@suse.de>
Mon, 16 Jan 2012 00:46:52 +0000 (01:46 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Thu, 19 Jan 2012 08:13:24 +0000 (08:13 +0000)
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>
qemu-tool.c

index c73bf71..6b69668 100644 (file)
@@ -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();
 }