Fix compile warnings

Fix compile warnings with the recent gcc.
This commit is contained in:
Takashi Iwai 2005-11-28 18:14:14 +00:00
parent 6b1cf9b7d1
commit 576366728e

View file

@ -32,7 +32,7 @@
# if defined (__i386__)
# define swab32(x) __i386_swab32(x)
static inline const uint_32 __i386_swab32(uint_32 x)
static inline uint_32 __i386_swab32(uint_32 x)
{
__asm__("bswap %0" : "=r" (x) : "0" (x));
return x;