From 733c283b1aec8623e27278cb9fa738b6adb59ac0 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Fri, 27 May 2016 22:43:52 +0200 Subject: [PATCH] Do not forget to alter the function declaration as well --- simgear/sound/readwav.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/sound/readwav.hxx b/simgear/sound/readwav.hxx index 5e0a4b26..375b26ae 100644 --- a/simgear/sound/readwav.hxx +++ b/simgear/sound/readwav.hxx @@ -16,7 +16,7 @@ class SGPath; namespace simgear { - ALvoid* loadWAVFromFile(const SGPath& path, ALenum& format, ALsizei& size, ALfloat& freqf); + ALvoid* loadWAVFromFile(const SGPath& path, unsigned int& format, ALsizei& size, ALfloat& freqf); ALuint createBufferFromFile(const SGPath& path); }