diff options
author | wm4 <wm4@nowhere> | 2013-11-23 21:40:33 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-11-23 21:40:33 +0100 |
commit | 215b3cedda95786392fd1064155f3e39d9b7c662 (patch) | |
tree | da371926b01967f71bd034a6e905871c9c9d6774 /audio/out | |
parent | 4c2fb8f3a2dbe4d9411007f169326d646943d216 (diff) | |
download | mpv-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.c | 4 |
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) |