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 <peter.mayd...@linaro.org> --- 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