aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutput.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:01:53 +0200
committerEric Wong <normalperson@yhbt.net>2008-08-31 04:02:09 -0700
commit6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa (patch)
tree94de57b9d0bae82be9e385c68b477d493179949e /src/audioOutput.c
parentc52667aa8eee2a40547026735b9670a2221d4168 (diff)
downloadmpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.tar.gz
mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.tar.xz
mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.zip
pass constant pointers
And again, convert arguments to const.
Diffstat (limited to '')
-rw-r--r--src/audioOutput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutput.c b/src/audioOutput.c
index 24779a04d..f165979d0 100644
--- a/src/audioOutput.c
+++ b/src/audioOutput.c
@@ -244,7 +244,7 @@ void finishAudioOutput(AudioOutput * audioOutput)
free(audioOutput->convBuffer);
}
-void sendMetadataToAudioOutput(AudioOutput * audioOutput, MpdTag * tag)
+void sendMetadataToAudioOutput(AudioOutput * audioOutput, const MpdTag * tag)
{
if (!audioOutput->sendMetdataFunc)
return;