From 121bab971ce7d913565b3ccbd48a04ad9a145b46 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 10 Dec 2006 01:10:53 +0000 Subject: [PATCH] Fix a compiler warning git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21566 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libao2/ao_openal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libao2/ao_openal.c b/libao2/ao_openal.c index 74ae860ec9..62be52c322 100644 --- a/libao2/ao_openal.c +++ b/libao2/ao_openal.c @@ -88,7 +88,7 @@ static int init(int rate, int channels, int format, int flags) { 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);