comparison libaf/af_volume.c @ 36394:2f815fdd521c

Remove pointless cast.
author reimar
date Sat, 26 Oct 2013 09:36:21 +0000
parents a93891202051
children 2b9bc3c2933d
comparison
equal deleted inserted replaced
36393:06cf8a9249f7 36394:2f815fdd521c
140 140
141 // Filter data through filter 141 // Filter data through filter
142 static af_data_t* play(struct af_instance_s* af, af_data_t* data) 142 static af_data_t* play(struct af_instance_s* af, af_data_t* data)
143 { 143 {
144 af_data_t* c = data; // Current working data 144 af_data_t* c = data; // Current working data
145 af_volume_t* s = (af_volume_t*)af->setup; // Setup for this instance 145 af_volume_t* s = af->setup; // Setup for this instance
146 int ch = 0; // Channel counter 146 int ch = 0; // Channel counter
147 register int nch = c->nch; // Number of channels 147 register int nch = c->nch; // Number of channels
148 register int i = 0; 148 register int i = 0;
149 149
150 // Basic operation volume control only (used on slow machines) 150 // Basic operation volume control only (used on slow machines)