mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-22 07:30:50 +00:00
remove useless parentheses
This commit is contained in:
parent
309b0385ae
commit
6e6e2fe74b
1 changed files with 1 additions and 1 deletions
|
@ -3530,7 +3530,7 @@ static int fluid_setchanmap(void *data, int ac, char **av,
|
|||
int val;
|
||||
}chan_val[NBR_MAPPING_TYPE] ={-1,0,-1,0,-1,0}; /* set all chan parameter to -1*/
|
||||
int chan, val, result;
|
||||
chan_val[map_type].chan = chan = atoi(av[(i * 2)]);
|
||||
chan_val[map_type].chan = chan = atoi(av[i * 2]);
|
||||
chan_val[map_type].val = val = atoi(av[(i * 2) + 1]);
|
||||
|
||||
/* set mapping */
|
||||
|
|
Loading…
Reference in a new issue