From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44284) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUuqC-0000Cb-KB for qemu-devel@nongnu.org; Tue, 01 Apr 2014 05:18:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WUuq3-0007VO-T9 for qemu-devel@nongnu.org; Tue, 01 Apr 2014 05:18:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUuq3-0007UW-Lp for qemu-devel@nongnu.org; Tue, 01 Apr 2014 05:18:35 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s319IZ2E020154 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 1 Apr 2014 05:18:35 -0400 From: Gerd Hoffmann Date: Tue, 1 Apr 2014 11:18:25 +0200 Message-Id: <1396343907-31756-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1396343907-31756-1-git-send-email-kraxel@redhat.com> References: <1396343907-31756-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 1/3] input: fix input_event_key_number trace event List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- trace-events | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trace-events b/trace-events index 3df3f32..9303245 100644 --- a/trace-events +++ b/trace-events @@ -1022,7 +1022,7 @@ gd_update(int x, int y, int w, int h) "x=%d, y=%d, w=%d, h=%d" gd_key_event(int gdk_keycode, int qemu_keycode, const char *action) "translated GDK keycode %d to QEMU keycode %d (%s)" # ui/input.c -input_event_key_number(int conidx, int number, bool down) "con %d, key number 0x%d, down %d" +input_event_key_number(int conidx, int number, bool down) "con %d, key number 0x%x, down %d" input_event_key_qcode(int conidx, const char *qcode, bool down) "con %d, key qcode %s, down %d" input_event_btn(int conidx, const char *btn, bool down) "con %d, button %s, down %d" input_event_rel(int conidx, const char *axis, int value) "con %d, axis %s, value %d" -- 1.8.3.1