diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 09:01:53 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-08-31 04:02:09 -0700 |
commit | 6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa (patch) | |
tree | 94de57b9d0bae82be9e385c68b477d493179949e /src/audio.h | |
parent | c52667aa8eee2a40547026735b9670a2221d4168 (diff) | |
download | mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.tar.gz mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.tar.xz mpd-6982a829e22d2bc7cf7c829c4430a4ea6f5bc7fa.zip |
pass constant pointers
And again, convert arguments to const.
Diffstat (limited to 'src/audio.h')
-rw-r--r-- | src/audio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.h b/src/audio.h index c9dea54d2..0032cff22 100644 --- a/src/audio.h +++ b/src/audio.h @@ -55,7 +55,7 @@ int isAudioDeviceOpen(void); int isCurrentAudioFormat(const AudioFormat * audioFormat); -void sendMetadataToAudioDevice(MpdTag * tag); +void sendMetadataToAudioDevice(const MpdTag * tag); /* these functions are called in the main parent process while the child process is busy playing to the audio */ |