diff options
Diffstat (limited to 'src/audioOutput.c')
-rw-r--r-- | src/audioOutput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audioOutput.c b/src/audioOutput.c index 43d073b48..d2fb2d776 100644 --- a/src/audioOutput.c +++ b/src/audioOutput.c @@ -67,9 +67,9 @@ void finishAudioOutputPlugins(void) int initAudioOutput(AudioOutput *ao, ConfigParam * param) { void *data = NULL; - char *name = NULL; + const char *name = NULL; char *format = NULL; - char *type = NULL; + const char *type = NULL; BlockParam *bp = NULL; AudioOutputPlugin *plugin = NULL; |