Remove silly superflous parenthesis.

This commit is contained in:
Markus Armbruster 2005-12-03 21:14:26 +00:00
parent e59c4bcfd0
commit e29f288289
8 changed files with 23 additions and 23 deletions

View file

@ -314,9 +314,9 @@ gen_power(void)
else
pow->p_power = pow->p_power * (1.0 / 500.0);
/* ack. add this vec to the "world power" element */
f_pt2 = &(powbuf[0].p_sects);
f_ptr = &(pow->p_sects);
while (f_ptr <= &(pow->p_power)) {
f_pt2 = &powbuf[0].p_sects;
f_ptr = &pow->p_sects;
while (f_ptr <= &pow->p_power) {
*f_pt2 += *f_ptr;
f_pt2++;
f_ptr++;