Remove silly superflous parenthesis.

This commit is contained in:
Markus Armbruster 2006-03-26 07:46:49 +00:00
parent beae3ea770
commit 0d0a305bf3
14 changed files with 31 additions and 31 deletions

View file

@ -95,7 +95,7 @@ upd_buildeff(struct natstr *np, struct sctstr *sp, int *workp,
vec[I_UW] = maxpop;
*workp = (vec[I_CIVIL] * sctwork) / 100.0
+ (vec[I_MILIT] * 2 / 5.0) + vec[I_UW];
*workp = roundavg((etu * (*workp)) / 100.0);
*workp = roundavg((etu * *workp) / 100.0);
buildeff_work = MIN((int)(*workp / 2), buildeff_work);
}