summaryrefslogtreecommitdiffstats
path: root/audio/out
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-23 21:40:33 +0100
committerwm4 <wm4@nowhere>2013-11-23 21:40:33 +0100
commit215b3cedda95786392fd1064155f3e39d9b7c662 (patch)
treeda371926b01967f71bd034a6e905871c9c9d6774 /audio/out
parent4c2fb8f3a2dbe4d9411007f169326d646943d216 (diff)
downloadmpv-215b3cedda95786392fd1064155f3e39d9b7c662.tar.bz2
mpv-215b3cedda95786392fd1064155f3e39d9b7c662.tar.xz
ao_rsound: fix option types
These are option values, and the option code expects char*. Not actually tested.
Diffstat (limited to 'audio/out')
-rw-r--r--audio/out/ao_rsound.c4
1 files changed, 2 insertions, 2 deletions
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)