diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-04-18 00:03:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | b18c12353d22037d85086c150ff9b3d3a2546f4d (patch) | |
| tree | 6a5e10df0f56c3517c6b0ecdcb0c514975df7217 /src/lib | |
| parent | f06c1a6f6748938b732bf3991e87fe71e6d8a9d9 (diff) | |
Remove redundant cast.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/butler.cc | 2 |
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 (); } |
