Fix compilation error (warnings as errors) on MSVC.

Originally committed to SVN as r6194.
This commit is contained in:
Niels Martin Hansen 2012-01-01 19:29:31 +00:00
parent 5706d00262
commit 20c7cbb6c7
1 changed files with 2 additions and 2 deletions

View File

@ -541,7 +541,7 @@ AudioProvider *CreatePCMAudioProvider(const wxString &filename)
// don't bother trying with anything else if this works
return provider;
}
catch (const wxChar *msg) {
catch (const wxChar *) {
provider = 0;
}
@ -550,7 +550,7 @@ AudioProvider *CreatePCMAudioProvider(const wxString &filename)
provider = new Wave64AudioProvider(filename);
return provider;
}
catch (const wxChar *msg) {
catch (const wxChar *) {
provider = 0;
}