Fixed -Wextra warnings

This commit is contained in:
Robert Osfield 2016-06-08 11:34:06 +01:00
parent fe2b4f92a1
commit 77289a1396

View File

@ -701,8 +701,8 @@ void SDLAudioSink::play()
SDL_AudioSpec specs = { 0 };
SDL_AudioSpec wanted_specs = { 0 };
SDL_AudioSpec specs;
SDL_AudioSpec wanted_specs;
wanted_specs.freq = _audioStream->audioFrequency();
wanted_specs.channels = _audioStream->audioNbChannels();