diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-26 13:43:07 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-26 13:43:07 +0000 |
commit | 78341986849f356b1b921d077a97db649ec2661c (patch) | |
tree | b9fe10850b589a60f5dade8cdf3407c67428127b /audio/sdlaudio.c | |
parent | 2eeeaa29a5ad4d8782df2a25fc13776c752dab09 (diff) | |
download | qemu-78341986849f356b1b921d077a97db649ec2661c.tar.gz qemu-78341986849f356b1b921d077a97db649ec2661c.tar.bz2 qemu-78341986849f356b1b921d077a97db649ec2661c.zip |
Fix undeclared symbol warnings from sparse
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5539 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio/sdlaudio.c')
-rw-r--r-- | audio/sdlaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c index 71d15d5a42..8bd6b56539 100644 --- a/audio/sdlaudio.c +++ b/audio/sdlaudio.c @@ -51,7 +51,7 @@ static struct { 1024 }; -struct SDLAudioState { +static struct SDLAudioState { int exit; SDL_mutex *mutex; SDL_sem *sem; |