1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-20 23:07:02 +00:00

ao_rsound: fix option types

These are option values, and the option code expects char*.

Not actually tested.
This commit is contained in:
wm4 2013-11-23 21:40:33 +01:00
parent 4c2fb8f3a2
commit 215b3cedda

View File

@ -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)