changeset 21550:9d9e0f1ef0e9

Fix a compiler warning
author reimar
date Sun, 10 Dec 2006 01:10:53 +0000
parents 4a6d3fa76982
children c35115c05c64
files libao2/ao_openal.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/ao_openal.c	Sun Dec 10 01:08:32 2006 +0000
+++ b/libao2/ao_openal.c	Sun Dec 10 01:10:53 2006 +0000
@@ -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);