ports/devel/sdl12/files/patch-include_SDL__endian.h
Kirill Ponomarev 529a050ac1 Update to 1.2.8
2005-01-16 18:37:05 +00:00

14 lines
369 B
C

$FreeBSD$
--- include/SDL_endian.h.orig
+++ include/SDL_endian.h
@@ -68,7 +68,7 @@
#elif defined(__GNUC__) && defined(__x86_64__)
static __inline__ Uint16 SDL_Swap16(Uint16 x)
{
- __asm__("xchgb %b0,%h0" : "=q" (x) : "0" (x));
+ __asm__("xchgb %b0,%h0" : "=Q" (x) : "0" (x));
return x;
}
#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))