File openal-alsa-emu10k1-gcc-fix.diff of Package openal-alsa-emu10k1
--- src/alut_wav.c-dist 2007-06-26 14:36:04.000000000 +0200 +++ src/alut_wav.c 2007-06-26 14:36:46.000000000 +0200 @@ -80,7 +80,8 @@ static ALboolean _alutReadWavHeader(AL_w return AL_FALSE; } - file->size = swap32le(*(memory++)); + file->size = swap32le(*memory); + memory++; if (file->size < 4) {