From 215b3cedda95786392fd1064155f3e39d9b7c662 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 23 Nov 2013 21:40:33 +0100 Subject: ao_rsound: fix option types These are option values, and the option code expects char*. Not actually tested. --- audio/out/ao_rsound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/out') diff --git a/audio/out/ao_rsound.c b/audio/out/ao_rsound.c index 123ee14ef5..4340deccba 100644 --- a/audio/out/ao_rsound.c +++ b/audio/out/ao_rsound.c @@ -36,8 +36,8 @@ struct priv { rsound_t *rd; - const char *host; - const char *port; + char *host; + char *port; }; static int set_format(struct ao *ao) -- cgit v1.2.3