From b18c12353d22037d85086c150ff9b3d3a2546f4d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 18 Apr 2017 00:03:05 +0100 Subject: [PATCH] Remove redundant cast. --- src/lib/butler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/butler.cc b/src/lib/butler.cc index 96546a673..7481b0301 100644 --- a/src/lib/butler.cc +++ b/src/lib/butler.cc @@ -176,6 +176,6 @@ Butler::player_changed () void Butler::get_audio (float* out, Frame frames) { - _audio.get (reinterpret_cast (out), _audio_channels, frames); + _audio.get (out, _audio_channels, frames); _summon.notify_all (); } -- 2.30.2