From 77289a13961957f16f564d0128aec129d9fa5297 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 8 Jun 2016 11:34:06 +0100 Subject: [PATCH] Fixed -Wextra warnings --- examples/osgmovie/osgmovie.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/osgmovie/osgmovie.cpp b/examples/osgmovie/osgmovie.cpp index 7221e6f37..7fa9f3af0 100644 --- a/examples/osgmovie/osgmovie.cpp +++ b/examples/osgmovie/osgmovie.cpp @@ -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();