Remove some redundant parenthesis; no functional change.
This commit is contained in:
parent
4861f837fb
commit
380b063f9c
41 changed files with 134 additions and 134 deletions
|
@ -79,7 +79,7 @@ roundrange(double r)
|
|||
|
||||
f = r - ((int)r);
|
||||
if (chance(f))
|
||||
return (((int)r) + 1);
|
||||
return ((int)r) + 1;
|
||||
else
|
||||
return ((int)r);
|
||||
return (int)r;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue