From: Takashi Iwai Date: Mon, 28 Nov 2005 18:14:14 +0000 (+0000) Subject: Fix compile warnings X-Git-Tag: v1.0.11rc1~5 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=576366728ec777236f065e07d08a6fe513cc9bfc;p=alsa-tools.git Fix compile warnings Fix compile warnings with the recent gcc. --- diff --git a/ac3dec/libac3/bitstream.h b/ac3dec/libac3/bitstream.h index 2b4dfc5..5e0d8f0 100644 --- a/ac3dec/libac3/bitstream.h +++ b/ac3dec/libac3/bitstream.h @@ -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;