qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 3/5] ui/cocoa: Send warning message to stderr, not s


From: Peter Maydell
Subject: [Qemu-devel] [PATCH 3/5] ui/cocoa: Send warning message to stderr, not stdout
Date: Sun, 8 Dec 2013 22:59:04 +0000

Bring a warning message into line with the others in this file by
sending it to stderr, not stdout, and fix a typo in it.

Signed-off-by: Peter Maydell <address@hidden>
---
 ui/cocoa.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/cocoa.m b/ui/cocoa.m
index f55747f..c5ab5a4 100644
--- a/ui/cocoa.m
+++ b/ui/cocoa.m
@@ -240,7 +240,7 @@ static int cocoa_keycode_to_qemu(int keycode)
 {
     if((sizeof(keymap)/sizeof(int)) <= keycode)
     {
-        printf("(cocoa) warning unknow keycode 0x%x\n", keycode);
+        fprintf(stderr, "(cocoa) warning unknown keycode 0x%x\n", keycode);
         return 0;
     }
     return keymap[keycode];
-- 
1.7.11.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]