diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-15 13:42:57 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-07-15 13:42:57 +0000 |
commit | b4df8b8f880648e63781395e1a350f258b809a18 (patch) | |
tree | 3e26b8faf86cf68f35506eb3e59b73d9477211e7 /src/audio.c | |
parent | 563e4c95fdea05dc162442d6b3a66e3fa0a13a48 (diff) | |
download | mpd-b4df8b8f880648e63781395e1a350f258b809a18.tar.gz mpd-b4df8b8f880648e63781395e1a350f258b809a18.tar.xz mpd-b4df8b8f880648e63781395e1a350f258b809a18.zip |
De-inline non-trivial, non-performance-critical functions
Functions that should stay inlined should have an explanation
attached to them.
git-svn-id: https://svn.musicpd.org/mpd/trunk@4355 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c index d0cd53da3..da2a20c80 100644 --- a/src/audio.c +++ b/src/audio.c @@ -251,7 +251,7 @@ int isCurrentAudioFormat(AudioFormat * audioFormat) { return 1; } -inline void syncAudioDevicesEnabledArrays() { +static void syncAudioDevicesEnabledArrays(void) { int i; memcpy(myAudioDevicesEnabled, pdAudioDevicesEnabled,AUDIO_MAX_DEVICES); |