From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:58669) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnpIO-0001Ii-TV for qemu-devel@nongnu.org; Thu, 19 Jan 2012 05:32:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RnpIJ-00070c-4X for qemu-devel@nongnu.org; Thu, 19 Jan 2012 05:32:40 -0500 Received: from e06smtp11.uk.ibm.com ([195.75.94.107]:58476) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnpII-00070Q-OM for qemu-devel@nongnu.org; Thu, 19 Jan 2012 05:32:35 -0500 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 19 Jan 2012 10:32:33 -0000 Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q0JAWVoo2932842 for ; Thu, 19 Jan 2012 10:32:31 GMT Received: from d06av09.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q0JAWUPt021380 for ; Thu, 19 Jan 2012 03:32:30 -0700 From: Stefan Hajnoczi Date: Thu, 19 Jan 2012 10:32:03 +0000 Message-Id: <1326969127-22458-2-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1326969127-22458-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1326969127-22458-1-git-send-email-stefanha@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/5] qemu-tool: Fix mixup of int64 and int64_t List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Paolo Bonzini , qemu-devel@nongnu.org, Stefan Hajnoczi , =?UTF-8?q?Andreas=20F=C3=A4rber?= From: Andreas Färber 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 Cc: Paolo Bonzini Signed-off-by: Stefan Hajnoczi --- qemu-tool.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qemu-tool.c b/qemu-tool.c index c73bf71..6b69668 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(); } -- 1.7.8.3