Mercurial > mplayer.hg
changeset 36394:2f815fdd521c
Remove pointless cast.
author | reimar |
---|---|
date | Sat, 26 Oct 2013 09:36:21 +0000 |
parents | 06cf8a9249f7 |
children | 2b9bc3c2933d |
files | libaf/af_volume.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libaf/af_volume.c Sat Oct 26 09:17:28 2013 +0000 +++ b/libaf/af_volume.c Sat Oct 26 09:36:21 2013 +0000 @@ -142,7 +142,7 @@ static af_data_t* play(struct af_instance_s* af, af_data_t* data) { af_data_t* c = data; // Current working data - af_volume_t* s = (af_volume_t*)af->setup; // Setup for this instance + af_volume_t* s = af->setup; // Setup for this instance int ch = 0; // Channel counter register int nch = c->nch; // Number of channels register int i = 0;