Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2009-09-06 18:32:02 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2009-09-06 18:32:02 +0400
commit3d64d65ad9c43f82bd4b9241b4a7fdde0fd12000 (patch)
tree53f570461725906cdac81bd5182f9ac75289cd2e /intern/audaspace/SDL
parentfb649d5824ccccca544c905209ba64340dc1bded (diff)
* clean out some warnings (unrefenced vars mainly)
Diffstat (limited to 'intern/audaspace/SDL')
-rw-r--r--intern/audaspace/SDL/AUD_SDLMixerReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/SDL/AUD_SDLMixerReader.cpp b/intern/audaspace/SDL/AUD_SDLMixerReader.cpp
index ec61f99f02d..0a47e36533a 100644
--- a/intern/audaspace/SDL/AUD_SDLMixerReader.cpp
+++ b/intern/audaspace/SDL/AUD_SDLMixerReader.cpp
@@ -87,7 +87,7 @@ AUD_SDLMixerReader::AUD_SDLMixerReader(AUD_IReader* reader,
specs.rate) == -1)
AUD_THROW(AUD_ERROR_SDL);
}
- catch(AUD_Exception e)
+ catch(AUD_Exception)
{
delete m_reader; AUD_DELETE("reader")
throw;