Remove redundant cast.
authorCarl Hetherington <cth@carlh.net>
Mon, 17 Apr 2017 23:03:05 +0000 (00:03 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 19 Apr 2017 22:04:32 +0000 (23:04 +0100)
src/lib/butler.cc

index 96546a673fa70c474b18e8f15fb1066a206540fe..7481b030118678d5c3806eb5d1b95a733d95bd81 100644 (file)
@@ -176,6 +176,6 @@ Butler::player_changed ()
 void
 Butler::get_audio (float* out, Frame frames)
 {
-       _audio.get (reinterpret_cast<float*> (out), _audio_channels, frames);
+       _audio.get (out, _audio_channels, frames);
        _summon.notify_all ();
 }