(nameofitem, produce, check, fire_dchrg, send_reacting_units_home,

do_map_set, upd_land, nav_check_atdest, produce, upd_ship): Remove
unused parameters.  Callers changed.
This commit is contained in:
Markus Armbruster 2004-03-03 09:39:50 +00:00
parent 19acc1cd07
commit 42290db8c8
12 changed files with 48 additions and 55 deletions

View file

@ -320,7 +320,7 @@ mission(void)
mission == MI_DSUPPORT || mission == MI_INTERDICT ||
mission == MI_AIR_DEFENSE) {
pr("%s on %s mission, centered on %s, radius %d\n",
nameofitem(buf, gp, type), mission_name(mission),
nameofitem(gp, type), mission_name(mission),
xyas(x, y, player->cnum), gp->radius);
} else if (mission == MI_RESERVE) {
int plus = 2;
@ -336,9 +336,9 @@ mission(void)
}
pr("%s on %s mission with maximum reaction radius %d\n",
nameofitem(buf, gp, type), mission_name(mission), plus);
nameofitem(gp, type), mission_name(mission), plus);
} else if (mission) {
pr("%s on %s mission\n", nameofitem(buf, gp, type),
pr("%s on %s mission\n", nameofitem(gp, type),
mission_name(mission));
}