summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-23 21:40:33 +0100
committerwm4 <wm4@nowhere>2013-12-01 19:30:13 +0100
commitbf39906cd5e5b6945133c948afc23b5f08f0c5c8 (patch)
tree1491ad2110d6989c6af4b36942738c09fb0ee8fb
parentdac0726e98354e7ee54c076cdb3e60e6b60bc64e (diff)
downloadmpv-bf39906cd5e5b6945133c948afc23b5f08f0c5c8.tar.bz2
mpv-bf39906cd5e5b6945133c948afc23b5f08f0c5c8.tar.xz
ao_rsound: fix option types
These are option values, and the option code expects char*. Not actually tested.
-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 5bfdbcef0f..8a62d3a737 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)