From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:51985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rmal3-0000IU-8Z for qemu-devel@nongnu.org; Sun, 15 Jan 2012 19:49:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rmal2-0000gY-2z for qemu-devel@nongnu.org; Sun, 15 Jan 2012 19:49:09 -0500 Received: from cantor2.suse.de ([195.135.220.15]:58236 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rmal1-0000gS-Ue for qemu-devel@nongnu.org; Sun, 15 Jan 2012 19:49:08 -0500 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Mon, 16 Jan 2012 01:46:52 +0100 Message-Id: <1326674823-13069-4-git-send-email-afaerber@suse.de> In-Reply-To: <1326674823-13069-1-git-send-email-afaerber@suse.de> References: <1326674823-13069-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 03/14] qemu-tool: Fix mixup of int64 and int64_t List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Anthony Liguori , Stefan Hajnoczi , Frediano Ziglio , Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= 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=C3=A4rber Cc: Paolo Bonzini --- 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, QObje= ct *data) { } =20 -int64 cpu_get_clock(void) +int64_t cpu_get_clock(void) { abort(); } =20 -int64 cpu_get_icount(void) +int64_t cpu_get_icount(void) { abort(); } --=20 1.7.7