From 01cc4e6fd7d364c6c401c579d504d82c0523d67e Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Sun, 8 Dec 2013 22:59:04 +0000 Subject: ui/cocoa: Send warning message to stderr, not stdout Bring a warning message into line with the others in this file by sending it to stderr, not stdout. Signed-off-by: Peter Maydell Message-id: 1386543546-31919-4-git-send-email-peter.maydell@linaro.org --- ui/cocoa.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui') diff --git a/ui/cocoa.m b/ui/cocoa.m index 1edb944235..5249891651 100644 --- a/ui/cocoa.m +++ b/ui/cocoa.m @@ -239,7 +239,7 @@ int keymap[] = static int cocoa_keycode_to_qemu(int keycode) { if (ARRAY_SIZE(keymap) <= keycode) { - printf("(cocoa) warning unknown keycode 0x%x\n", keycode); + fprintf(stderr, "(cocoa) warning unknown keycode 0x%x\n", keycode); return 0; } return keymap[keycode]; -- cgit v1.2.3