summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_sdl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-22 22:57:51 +0200
committerwm4 <wm4@nowhere>2013-07-22 22:58:09 +0200
commitf32a90a8396136cdded09390b68c9aac3d29ee7e (patch)
treeeeb5879ca68094308e9cfa51ef7e86e729111a2e /audio/out/ao_sdl.c
parent1f5ffe7d30a5537cc83fbfb8dad37d01af27427b (diff)
downloadmpv-f32a90a8396136cdded09390b68c9aac3d29ee7e.tar.bz2
mpv-f32a90a8396136cdded09390b68c9aac3d29ee7e.tar.xz
audio/out: remove options argument from init()
Same as with VOs in the previous commit.
Diffstat (limited to 'audio/out/ao_sdl.c')
-rw-r--r--audio/out/ao_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao_sdl.c b/audio/out/ao_sdl.c
index 93f5431679..b5368066d8 100644
--- a/audio/out/ao_sdl.c
+++ b/audio/out/ao_sdl.c
@@ -121,7 +121,7 @@ static unsigned int ceil_power_of_two(unsigned int x)
return y;
}
-static int init(struct ao *ao, char *params)
+static int init(struct ao *ao)
{
if (SDL_WasInit(SDL_INIT_AUDIO)) {
mp_msg(MSGT_AO, MSGL_ERR, "[sdl] already initialized\n");