diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 09:01:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-29 09:01:53 +0200 |
commit | 12bcba8b89ad503cbdfb8261c5c26b9f87860345 (patch) | |
tree | 640d2f57cd4f9e5059db9b0c533b7919d4ddb52f /src/audio.h | |
parent | d8a8fa63b40801f597cc374bcfcbdd397aa0a670 (diff) | |
download | mpd-12bcba8b89ad503cbdfb8261c5c26b9f87860345.tar.gz mpd-12bcba8b89ad503cbdfb8261c5c26b9f87860345.tar.xz mpd-12bcba8b89ad503cbdfb8261c5c26b9f87860345.zip |
pass constant pointers
And again, convert arguments to const.
Diffstat (limited to '')
-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 */ |