diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-04-12 18:51:16 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-04-12 18:51:16 +0000 |
commit | 6bc445d00f7479c106828651abc3d76ddee5a5a5 (patch) | |
tree | 48ee93aacef62c3abddf29ad0f860917b376ebb8 /src/audio.h | |
parent | 57742785b4ebd756ea4c7b05aeed873a103bb9e3 (diff) | |
download | mpd-6bc445d00f7479c106828651abc3d76ddee5a5a5.tar.gz mpd-6bc445d00f7479c106828651abc3d76ddee5a5a5.tar.xz mpd-6bc445d00f7479c106828651abc3d76ddee5a5a5.zip |
volatile fun-ness
git-svn-id: https://svn.musicpd.org/mpd/trunk@705 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio.h b/src/audio.h index 9a4bb10cf..58a83a79a 100644 --- a/src/audio.h +++ b/src/audio.h @@ -28,9 +28,9 @@ #define AUDIO_AO_DRIVER_DEFAULT "default" typedef struct _AudioFormat { - mpd_sint8 volatile channels; - mpd_uint32 volatile sampleRate; - mpd_sint8 volatile bits; + volatile mpd_sint8 channels; + volatile mpd_uint32 sampleRate; + volatile mpd_sint8 bits; } AudioFormat; void initAudioDriver(); |