# HG changeset patch # User reimar # Date 1165713053 0 # Node ID 9d9e0f1ef0e993a65bb9933f3c196e57538bc33a # Parent 4a6d3fa769823812c0e261ca2017ced1c060c2bc Fix a compiler warning diff -r 4a6d3fa76982 -r 9d9e0f1ef0e9 libao2/ao_openal.c --- 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);