diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 13:51:50 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 13:51:50 +0200 |
commit | 4ddc0a48e2e53acc58990ec72e907a136e51d77e (patch) | |
tree | a92187be3b042e2a89923d767e85d5bb99b09739 /src/audio.h | |
parent | f7e414d9347aaf2397f883181c8bdb6959380143 (diff) | |
download | mpd-4ddc0a48e2e53acc58990ec72e907a136e51d77e.tar.gz mpd-4ddc0a48e2e53acc58990ec72e907a136e51d77e.tar.xz mpd-4ddc0a48e2e53acc58990ec72e907a136e51d77e.zip |
audio: don't pass "fd" to {en,dis}ableAudioDevice()
No protocol code in the audio output library.
Diffstat (limited to 'src/audio.h')
-rw-r--r-- | src/audio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio.h b/src/audio.h index 0703e402b..a261f6a1a 100644 --- a/src/audio.h +++ b/src/audio.h @@ -60,9 +60,9 @@ void sendMetadataToAudioDevice(const struct tag *tag); /* these functions are called in the main parent process while the child process is busy playing to the audio */ -int enableAudioDevice(int fd, unsigned int device); +int enableAudioDevice(unsigned int device); -int disableAudioDevice(int fd, unsigned int device); +int disableAudioDevice(unsigned int device); void printAudioDevices(int fd); |