[MPlayer-cvslog] r21566 - trunk/libao2/ao_openal.c
reimar
subversion at mplayerhq.hu
Sun Dec 10 02:10:53 CET 2006
Author: reimar
Date: Sun Dec 10 02:10:53 2006
New Revision: 21566
Modified:
trunk/libao2/ao_openal.c
Log:
Fix a compiler warning
Modified: trunk/libao2/ao_openal.c
==============================================================================
--- trunk/libao2/ao_openal.c (original)
+++ trunk/libao2/ao_openal.c Sun Dec 10 02:10:53 2006
@@ -88,7 +88,7 @@
mp_msg(MSGT_AO, MSGL_FATAL, "[OpenAL] could not open device\n");
goto err_out;
}
- ctx = alcCreateContext(dev, &attribs);
+ ctx = alcCreateContext(dev, attribs);
alcMakeContextCurrent(ctx);
alListenerfv(AL_POSITION, position);
alListenerfv(AL_ORIENTATION, direction);
More information about the MPlayer-cvslog
mailing list