From bf39906cd5e5b6945133c948afc23b5f08f0c5c8 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(-) 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) -- cgit v1.2.3