mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
526 B

  1. diff -uNr SDL-1.2.8-orig/include/SDL_endian.h SDL-1.2.8/include/SDL_endian.h
  2. --- SDL-1.2.8-orig/include/SDL_endian.h 2004-12-13 08:54:30.000000000 +0100
  3. +++ SDL-1.2.8/include/SDL_endian.h 2005-04-08 10:53:11.090155752 +0200
  4. @@ -68,7 +68,7 @@
  5. #elif defined(__GNUC__) && defined(__x86_64__)
  6. static __inline__ Uint16 SDL_Swap16(Uint16 x)
  7. {
  8. - __asm__("xchgb %b0,%h0" : "=q" (x) : "0" (x));
  9. + __asm__("xchgb %b0,%h0" : "=Q" (x) : "0" (x));
  10. return x;
  11. }
  12. #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))