From: Andreas Färber Date: Sat, 12 Dec 2009 23:58:21 +0000 (+0100) Subject: Cocoa: Silence warning on Big Endian host X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=04afa4a88c132f7ffb0ccfaf6f233a18c4089072;p=qemu.git Cocoa: Silence warning on Big Endian host __LITTLE_ENDIAN__ is undefined on Big Endian host. Signed-off-by: Andreas Färber Cc: John Arbuckle Signed-off-by: malc --- diff --git a/cocoa.m b/cocoa.m index f80a70bd23..f8c2e009a9 100644 --- a/cocoa.m +++ b/cocoa.m @@ -319,7 +319,7 @@ static int cocoa_keycode_to_qemu(int keycode) screen.bitsPerComponent, //bitsPerComponent screen.bitsPerPixel, //bitsPerPixel (screen.width * (screen.bitsPerComponent/2)), //bytesPerRow -#if __LITTLE_ENDIAN__ +#ifdef __LITTLE_ENDIAN__ CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB), //colorspace for OS X >= 10.4 kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst, #else