summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-04-18 00:03:05 +0100
committerCarl Hetherington <cth@carlh.net>2017-04-19 23:04:32 +0100
commitb18c12353d22037d85086c150ff9b3d3a2546f4d (patch)
tree6a5e10df0f56c3517c6b0ecdcb0c514975df7217 /src/lib
parentf06c1a6f6748938b732bf3991e87fe71e6d8a9d9 (diff)
Remove redundant cast.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/butler.cc2
1 files changed, 1 insertions, 1 deletions
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<float*> (out), _audio_channels, frames);
+ _audio.get (out, _audio_channels, frames);
_summon.notify_all ();
}