diff --git a/src/lib/as/as_cache.c b/src/lib/as/as_cache.c index 5d27ed27..becf3bb1 100644 --- a/src/lib/as/as_cache.c +++ b/src/lib/as/as_cache.c @@ -107,9 +107,7 @@ as_add_cachepath(struct as_data *adp) /* And set some stuff */ from->x = adp->from.x; /* Here we malloc a whole bunch of tolist pointers. */ - from->tolist = (struct as_topath **)calloc(1, - sizeof(struct as_topath - *) * WORLD_Y); + from->tolist = calloc(1, sizeof(struct as_topath *) * WORLD_Y); /* Now, add from to the global list */ from->next = fromhead[adp->from.y]; fromhead[adp->from.y] = from; diff --git a/src/lib/commands/bomb.c b/src/lib/commands/bomb.c index 0fc54442..a569f93c 100644 --- a/src/lib/commands/bomb.c +++ b/src/lib/commands/bomb.c @@ -110,8 +110,8 @@ bomb(void) wantflags = 0; if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1])) return RET_SYN; - if (!snxtitem - (&ni_esc, EF_PLANE, getstarg(player->argp[2], "escort(s)? ", buf))) + if (!snxtitem(&ni_esc, EF_PLANE, + getstarg(player->argp[2], "escort(s)? ", buf))) pr("No escorts...\n"); if ((p = getstarg(player->argp[3], "pinpoint, or strategic? ", buf)) == 0) @@ -255,9 +255,8 @@ pin_bomb(struct emp_qelem *list, struct sctstr *target) nunits = unitsatxy(target->sct_x, target->sct_y, 0, 0); getvec(VT_ITEM, vec, (s_char *)target, EF_SECTOR); retry: - p = getstring - ("Bomb what? (ship, plane, land unit, efficiency, commodities) ", - buf); + p = getstring("Bomb what? (ship, plane, land unit, efficiency, commodities) ", + buf); if (p == 0 || *p == 0) { if (player->aborted) return; @@ -598,8 +597,7 @@ ship_bomb(struct emp_qelem *list, struct sctstr *target) sprintf(msg, "Flak! Firing %d guns from ship %s\n", flak, prship(&ship)); PR(ship.shp_own, msg); - if (pinflak_planedamage - (&plp->plane, plp->pcp, ship.shp_own, flak)) + if (pinflak_planedamage(&plp->plane, plp->pcp, ship.shp_own, flak)) continue; } @@ -838,8 +836,7 @@ land_bomb(struct emp_qelem *list, struct sctstr *target) "Flak! Firing flak guns from unit %s (aa rating %d)\n", prland(&land), land.lnd_aaf); PR(land.lnd_own, msg); - if (pinflak_planedamage - (&plp->plane, plp->pcp, land.lnd_own, flak)) + if (pinflak_planedamage(&plp->plane, plp->pcp, land.lnd_own, flak)) continue; } diff --git a/src/lib/commands/coll.c b/src/lib/commands/coll.c index 3e99cf0a..312e33e5 100644 --- a/src/lib/commands/coll.c +++ b/src/lib/commands/coll.c @@ -108,10 +108,8 @@ coll(void) owed *= loan.l_amtdue; /* End overflow fix */ pr("You are owed $%.2f on that loan.\n", owed); - if (! - (p = - getstarg(player->argp[2], - "What sector do you wish to confiscate? ", buf))) + if (!(p = getstarg(player->argp[2], + "What sector do you wish to confiscate? ", buf))) return RET_SYN; if (!check_loan_ok(&loan)) return RET_FAIL; diff --git a/src/lib/commands/decl.c b/src/lib/commands/decl.c index 47147106..cc1ee20c 100644 --- a/src/lib/commands/decl.c +++ b/src/lib/commands/decl.c @@ -51,11 +51,9 @@ decl(void) s_char *p; s_char buf[1024]; - if (! - (p = - getstarg(player->argp[1], - "alliance, friendly, neutrality, hostility, or war? ", - buf))) + if (!(p = getstarg(player->argp[1], + "alliance, friendly, neutrality, hostility, or war? ", + buf))) return RET_SYN; switch (*p) { case 'a': diff --git a/src/lib/commands/deli.c b/src/lib/commands/deli.c index a87c1099..eea0772d 100644 --- a/src/lib/commands/deli.c +++ b/src/lib/commands/deli.c @@ -73,7 +73,7 @@ deli(void) while (nxtsct(&nstr, §) > 0) { if (!player->owner) continue; - + del = getvar(i_del, (s_char *)§, EF_SECTOR); thresh = del & ~0x7; dir = del & 0x7; @@ -100,7 +100,7 @@ deli(void) if (dir < 0) return RET_SYN; } - + if (!check_sect_ok(§)) continue; diff --git a/src/lib/commands/demo.c b/src/lib/commands/demo.c index 62af5c98..72993409 100644 --- a/src/lib/commands/demo.c +++ b/src/lib/commands/demo.c @@ -64,14 +64,11 @@ demo(void) cash = natp->nat_money; if (!snxtsct(&nstr, player->argp[1])) return RET_SYN; - if ((p = - getstarg(player->argp[2], "Number to de-mobilize : ", buf)) == 0) + if (!(p = getstarg(player->argp[2], "Number to de-mobilize : ", buf))) return RET_SYN; number = atoi(p); - if (! - (p = - getstarg(player->argp[3], - "New civilians on active reserve? (y/n) ", buf))) + if (!(p = getstarg(player->argp[3], + "New civilians on active reserve? (y/n) ", buf))) return RET_SYN; if (*p != 'y' && *p != 'n') return RET_SYN; diff --git a/src/lib/commands/drop.c b/src/lib/commands/drop.c index 20b97dc7..7dbadfab 100644 --- a/src/lib/commands/drop.c +++ b/src/lib/commands/drop.c @@ -72,8 +72,8 @@ drop(void) wantflags = 0; if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1])) return RET_SYN; - if (!snxtitem - (&ni_esc, EF_PLANE, getstarg(player->argp[2], "escort(s)? ", buf))) + if (!snxtitem(&ni_esc, EF_PLANE, + getstarg(player->argp[2], "escort(s)? ", buf))) pr("No escorts...\n"); if ((p = getstarg(player->argp[3], "assembly point? ", buf)) == 0 || *p == 0) diff --git a/src/lib/commands/fly.c b/src/lib/commands/fly.c index c3869ef8..44132ce5 100644 --- a/src/lib/commands/fly.c +++ b/src/lib/commands/fly.c @@ -76,8 +76,8 @@ fly(void) wantflags = 0; if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1])) return RET_SYN; - if (!snxtitem - (&ni_esc, EF_PLANE, getstarg(player->argp[2], "escort(s)? ", buf))) + if (!snxtitem(&ni_esc, EF_PLANE, + getstarg(player->argp[2], "escort(s)? ", buf))) pr("No escorts...\n"); if ((p = getstarg(player->argp[3], "assembly point? ", buf)) == 0 || *p == 0) diff --git a/src/lib/commands/fuel.c b/src/lib/commands/fuel.c index b4406f03..f9a1e4c2 100644 --- a/src/lib/commands/fuel.c +++ b/src/lib/commands/fuel.c @@ -225,9 +225,8 @@ fuel(void) if (!player->argp[4]) pr("%s is not in a supplied, efficient harbor\n", prship(&item.ship)); - if (!snxtitem - (&tender, EF_SHIP, - getstarg(player->argp[4], "Oiler? ", buf))) + if (!snxtitem (&tender, EF_SHIP, + getstarg(player->argp[4], "Oiler? ", buf))) continue; if (!check_ship_ok(&item.ship)) diff --git a/src/lib/commands/laun.c b/src/lib/commands/laun.c index a039bbfc..f1f4d4fb 100644 --- a/src/lib/commands/laun.c +++ b/src/lib/commands/laun.c @@ -217,9 +217,8 @@ launch_as(struct plnstr *pp) pr("No satellites there!\n"); return -1; } - if (msl_hit - (pp, plane.pln_def, EF_PLANE, N_SAT_KILL, N_SAT_KILL, - prplane(&plane), sx, sy, plane.pln_own)) { + if (msl_hit(pp, plane.pln_def, EF_PLANE, N_SAT_KILL, N_SAT_KILL, + prplane(&plane), sx, sy, plane.pln_own)) { dam = pln_damage(pp, sx, sy, 'p', &nukedam, 1); oldown = plane.pln_own; planedamage(&plane, dam); diff --git a/src/lib/commands/load.c b/src/lib/commands/load.c index e5ce0029..72ebf002 100644 --- a/src/lib/commands/load.c +++ b/src/lib/commands/load.c @@ -393,8 +393,8 @@ load_plane_ship(struct sctstr *sectp, struct shpstr *sp, int noisy, } sprintf(prompt, "Plane(s) to %s %s? ", load_unload == LOAD ? "load onto" : "unload from", prship(sp)); - if (!snxtitem - (&ni, EF_PLANE, p = getstarg(player->argp[3], prompt, buf))) + if (!snxtitem(&ni, EF_PLANE, + p = getstarg(player->argp[3], prompt, buf))) return RET_SYN; if (!still_ok_ship(sectp, sp)) @@ -538,8 +538,8 @@ load_land_ship(struct sctstr *sectp, struct shpstr *sp, int noisy, } sprintf(prompt, "Land unit(s) to %s %s? ", load_unload == LOAD ? "load onto" : "unload from", prship(sp)); - if (!snxtitem - (&ni, EF_LAND, p = getstarg(player->argp[3], prompt, buf))) + if (!snxtitem(&ni, EF_LAND, + p = getstarg(player->argp[3], prompt, buf))) return RET_SYN; if (!still_ok_ship(sectp, sp)) @@ -858,8 +858,8 @@ load_plane_land(struct sctstr *sectp, struct lndstr *lp, int noisy, } sprintf(prompt, "Plane(s) to %s %s? ", load_unload == LOAD ? "load onto" : "unload from", prland(lp)); - if (!snxtitem - (&ni, EF_PLANE, p = getstarg(player->argp[3], prompt, buf))) + if (!snxtitem(&ni, EF_PLANE, + p = getstarg(player->argp[3], prompt, buf))) return RET_SYN; if (!still_ok_land(sectp, lp)) @@ -1085,8 +1085,8 @@ load_land_land(struct sctstr *sectp, struct lndstr *lp, int noisy, } sprintf(prompt, "Land unit(s) to %s %s? ", load_unload == LOAD ? "load onto" : "unload from", prland(lp)); - if (!snxtitem - (&ni, EF_LAND, p = getstarg(player->argp[3], prompt, buf))) + if (!snxtitem(&ni, EF_LAND, + p = getstarg(player->argp[3], prompt, buf))) return RET_SYN; if (!still_ok_land(sectp, lp)) diff --git a/src/lib/commands/lten.c b/src/lib/commands/lten.c index 88ef36ac..1d6f4362 100644 --- a/src/lib/commands/lten.c +++ b/src/lib/commands/lten.c @@ -75,8 +75,8 @@ ltend(void) if (!(ip = whatitem(player->argp[1], "Transfer what commodity? "))) return RET_SYN; - if (!snxtitem - (&tenders, EF_SHIP, getstarg(player->argp[2], "Tender(s)? ", buf))) + if (!snxtitem(&tenders, EF_SHIP, + getstarg(player->argp[2], "Tender(s)? ", buf))) return RET_SYN; while (nxtitem(&tenders, (s_char *)&tender)) { if (!player->owner) diff --git a/src/lib/commands/mfir.c b/src/lib/commands/mfir.c index dca04331..93bfb134 100644 --- a/src/lib/commands/mfir.c +++ b/src/lib/commands/mfir.c @@ -829,8 +829,7 @@ quiet_bigdef(int attacker, struct emp_qelem *list, natid own, natid aown, range = mapdist(ship.shp_x, ship.shp_y, ax, ay); if (range > erange) continue; - if (!line_of_sight - ((s_char **)0, ship.shp_x, ship.shp_y, ax, ay)) + if (!line_of_sight((s_char **)0, ship.shp_x, ship.shp_y, ax, ay)) continue; (*nfiring)++; diff --git a/src/lib/commands/move.c b/src/lib/commands/move.c index 679bcba4..3ee2b7f4 100644 --- a/src/lib/commands/move.c +++ b/src/lib/commands/move.c @@ -413,10 +413,9 @@ would_abandon(struct sctstr *sp, int vtype, int amnt, struct lndstr *lp) loyalcivs = 0; /* If they have a military unit there, they still own it */ - if (sp->sct_own != 0 && ((loyalcivs == 0) && (mil == 0) && - (has_units - (sp->sct_x, sp->sct_y, sp->sct_own, - lp) == 0))) + if (sp->sct_own != 0 + && ((loyalcivs == 0) && (mil == 0) + && (has_units(sp->sct_x, sp->sct_y, sp->sct_own, lp) == 0))) return 1; return 0; diff --git a/src/lib/commands/para.c b/src/lib/commands/para.c index 4fcc4d76..27f9fa65 100644 --- a/src/lib/commands/para.c +++ b/src/lib/commands/para.c @@ -77,8 +77,8 @@ para(void) wantflags = P_P; if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1])) return RET_SYN; - if (!snxtitem - (&ni_esc, EF_PLANE, getstarg(player->argp[2], "escort(s)? ", buf))) + if (!snxtitem(&ni_esc, EF_PLANE, + getstarg(player->argp[2], "escort(s)? ", buf))) pr("No escorts...\n"); if ((p = getstarg(player->argp[3], "assembly point? ", buf)) == 0 || *p == 0) diff --git a/src/lib/commands/real.c b/src/lib/commands/real.c index 691d31fd..5f8e2a8f 100644 --- a/src/lib/commands/real.c +++ b/src/lib/commands/real.c @@ -132,7 +132,7 @@ dreal() } pr("Realms for %s (#%d)\n",cname(nat),nat); natp = getnatp(nat); - abs.width = 0; + abs.width = 0; abs.height = 0; while (curr <= lastr) { b = &natp->nat_b[curr]; diff --git a/src/lib/commands/reco.c b/src/lib/commands/reco.c index b57830c2..25000e74 100644 --- a/src/lib/commands/reco.c +++ b/src/lib/commands/reco.c @@ -71,8 +71,8 @@ reco(void) wantflags = 0; if (!snxtitem(&ni_bomb, EF_PLANE, player->argp[1])) return RET_SYN; - if (!snxtitem - (&ni_esc, EF_PLANE, getstarg(player->argp[2], "escort(s)? ", buf))) + if (!snxtitem(&ni_esc, EF_PLANE, + getstarg(player->argp[2], "escort(s)? ", buf))) pr("No escorts...\n"); if ((p = getstarg(player->argp[3], "assembly point? ", buf)) == 0 || *p == 0) diff --git a/src/lib/commands/repo.c b/src/lib/commands/repo.c index 6f9c4314..b6b2c8ce 100644 --- a/src/lib/commands/repo.c +++ b/src/lib/commands/repo.c @@ -204,29 +204,22 @@ printdiff(int mystat, double ours, struct natstr *natp, int what) if (tolerance > 2 * ours) tolerance = (int)(2 * ours); if (check(buf, theirs, 2 * ours, -1.0, shift, what, tolerance)) ; - else if (check - (buf, theirs, 1.5 * ours, 2.0 * ours, shift, what, + else if (check(buf, theirs, 1.5 * ours, 2.0 * ours, shift, what, + tolerance)) ; + else if (check(buf, theirs, 1.2 * ours, 1.5 * ours, shift, what, tolerance)) ; - else if (check - (buf, theirs, 1.2 * ours, 1.5 * ours, shift, what, - tolerance)) ; - else if (check - (buf, theirs, 1.1 * ours, 1.2 * ours, shift, what, - tolerance)) ; - else if (check - (buf, theirs, ours / 1.1, 1.1 * ours, shift, what, - tolerance)) ; - else if (check - (buf, theirs, ours / 1.2, ours / 1.1, shift, what, - tolerance)) ; - else if (check - (buf, theirs, ours / 1.5, ours / 1.2, shift, what, - tolerance)) ; - else if (check - (buf, theirs, ours / 2.0, ours / 1.5, shift, what, - tolerance)) ; - else if (check - (buf, theirs, -1.0, ours / 2.0, shift, what, tolerance)) ; + else if (check(buf, theirs, 1.1 * ours, 1.2 * ours, shift, what, + tolerance)) ; + else if (check(buf, theirs, ours / 1.1, 1.1 * ours, shift, what, + tolerance)) ; + else if (check(buf, theirs, ours / 1.2, ours / 1.1, shift, what, + tolerance)) ; + else if (check(buf, theirs, ours / 1.5, ours / 1.2, shift, what, + tolerance)) ; + else if (check(buf, theirs, ours / 2.0, ours / 1.5, shift, what, + tolerance)) ; + else if (check(buf, theirs, -1.0, ours / 2.0, shift, what, + tolerance)) ; else sprintf(buf, " n/a"); } else diff --git a/src/lib/commands/swap.c b/src/lib/commands/swap.c index f7920a0f..3dd177c9 100644 --- a/src/lib/commands/swap.c +++ b/src/lib/commands/swap.c @@ -68,8 +68,7 @@ swaps(void) !getsect(sectb.sct_x, sectb.sct_y, §b)) return RET_SYN; print_res(§b); - if (!confirm - ("Are you sure these are the two sectors you wish to swap? ")) + if (!confirm ("Are you sure these are the two sectors you wish to swap? ")) return RET_FAIL; /* save x and y from secta */ x = secta.sct_x; diff --git a/src/lib/commands/tend.c b/src/lib/commands/tend.c index 91b72caa..c803d338 100644 --- a/src/lib/commands/tend.c +++ b/src/lib/commands/tend.c @@ -87,8 +87,8 @@ tend(void) return RET_SYN; } - if (!snxtitem - (&tenders, EF_SHIP, getstarg(player->argp[2], "Tender(s)? ", buf))) + if (!snxtitem(&tenders, EF_SHIP, + getstarg(player->argp[2], "Tender(s)? ", buf))) return RET_SYN; while (nxtitem(&tenders, (s_char *)&tender)) { diff --git a/src/lib/commands/trad.c b/src/lib/commands/trad.c index d38e4044..e4ef961f 100644 --- a/src/lib/commands/trad.c +++ b/src/lib/commands/trad.c @@ -330,8 +330,7 @@ check_trade(void) continue; } if (tg.gen.trg_own != trade.trd_owner) { - logerror - ("SOmething weird, tg.gen.trg_own != trade.trd_owner!\n"); + logerror("Something weird, tg.gen.trg_own != trade.trd_owner!\n"); trade.trd_unitid = -1; puttrade(n, &trade); continue; diff --git a/src/lib/common/bestpath.c b/src/lib/common/bestpath.c index 74d8332b..fe0f3cad 100644 --- a/src/lib/common/bestpath.c +++ b/src/lib/common/bestpath.c @@ -204,8 +204,8 @@ bestownedpath(s_char *bpath, tx = XNORM(tx); ty = YNORM(ty); if (mapindex[tx][ty] == 0xFFFF) { - if (owned_and_navigable - (bigmap, tx, ty, terrain, own) + if (owned_and_navigable(bigmap, tx, ty, + terrain, own) || (tx == ex && ty == ey && !restr2)) { mapindex[tx][ty] = ((i + 1) << 13) + routelen; diff --git a/src/lib/common/file.c b/src/lib/common/file.c index c0b58062..7d5a6354 100644 --- a/src/lib/common/file.c +++ b/src/lib/common/file.c @@ -294,9 +294,8 @@ ef_write(int type, int id, caddr_t ptr) } if (id >= ep->fids) { if (ep->flags & EFF_MEM) { - logerror - ("file %s went beyond %d items; won't be able toread item w/o restart", - ep->name, ep->fids); + logerror("file %s went beyond %d items; won't be able toread item w/o restart", + ep->name, ep->fids); } else { /* write expanded file; ep->fids = last id + 1 */ ep->fids = id + 1; diff --git a/src/lib/lwp/lwp.c b/src/lib/lwp/lwp.c index ccc13a8a..eaa29d46 100644 --- a/src/lib/lwp/lwp.c +++ b/src/lib/lwp/lwp.c @@ -448,8 +448,7 @@ lwpInitSystem(int pri, char **ctxptr, int flags) if (pri < 1) pri = 1; /* *LwpContextPtr = 0; */ - if (! - (LwpCurrent = (struct lwpProc *)calloc(1, sizeof(struct lwpProc)))) + if (!(LwpCurrent = calloc(1, sizeof(struct lwpProc)))) return (0); if (!(stack = (int *)malloc(64))) return (0); diff --git a/src/lib/player/accept.c b/src/lib/player/accept.c index 8ffd130b..6145e0ae 100644 --- a/src/lib/player/accept.c +++ b/src/lib/player/accept.c @@ -226,8 +226,7 @@ player_accept(void *unused) exit(1); } #else - logerror - ("Alpha/Linux? You don't support SO_REUSEADDR yet, do you?\n"); + logerror("Alpha/Linux? You don't support SO_REUSEADDR yet, do you?\n"); #endif if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) { logerror("inet socket bind"); diff --git a/src/lib/subs/attsub.c b/src/lib/subs/attsub.c index ce7cd313..2ec3f963 100644 --- a/src/lib/subs/attsub.c +++ b/src/lib/subs/attsub.c @@ -578,9 +578,7 @@ att_abort(int combat_mode, struct combat *off, struct combat *def) && (sect.sct_oldown != player->cnum) && (issneak != SITZKRIEG) && (issneak != MOBILIZATION)) { pr("You're not at war with them!\n"); - if (!confirm - ("Do you really want to sneak attack (it will cost you $5000) [yn]? ")) - { + if (!confirm("Do you really want to sneak attack (it will cost you $5000) [yn]? ")) { pr("Sneak attack cancelled!\n"); return abort_attack(); } @@ -779,36 +777,29 @@ att_ask_support(int offset, int *fortp, int *shipp, int *landp, *fortp = *shipp = 0; *landp = *planep = 0; - if (! - (p = - getstarg(player->argp[offset], "Use fort support? ", buf))) + if (!(p = getstarg(player->argp[offset], "Use fort support? ", + buf))) return RET_SYN; if ((*p == 'y') || (*p == 'Y')) *fortp = 1; - if (! - (p = - getstarg(player->argp[offset + 1], "Use ship support? ", - buf))) + if (!(p = getstarg(player->argp[offset + 1], "Use ship support? ", + buf))) return RET_SYN; if ((*p == 'y') || (*p == 'Y')) *shipp = 1; - if (! - (p = - getstarg(player->argp[offset + 2], "Use land support? ", - buf))) + if (!(p = getstarg(player->argp[offset + 2], "Use land support? ", + buf))) return RET_SYN; if ((*p == 'y') || (*p == 'Y')) *landp = 1; - if (! - (p = - getstarg(player->argp[offset + 3], "Use plane support? ", - buf))) + if (!p = getstarg(player->argp[offset + 3], "Use plane support? ", + buf))) return RET_SYN; if ((*p == 'y') || (*p == 'Y')) @@ -1597,10 +1588,7 @@ att_reacting_units(struct combat *def, struct emp_qelem *list, int a_spy, continue; getsect(def->x, def->y, &dsect); - if (! - (p = - (s_char *)BestLandPath(buf, §, &dsect, &move_cost, - MOB_ROAD))) + if (!(p = BestLandPath(buf, §, &dsect, &move_cost, MOB_ROAD))) continue; mobcost = land.lnd_effic * 0.01 * lchr[(int)land.lnd_type].l_spd; diff --git a/src/lib/subs/plnsub.c b/src/lib/subs/plnsub.c index ac3f6abe..b67277e2 100644 --- a/src/lib/subs/plnsub.c +++ b/src/lib/subs/plnsub.c @@ -109,11 +109,10 @@ pln_onewaymission(struct sctstr *target, int *shipno, int *flagp) if (!(p = getstarg(0, "Carrier #? ", buf)) || !*p) break; n = atoi(p); - if (n < 0 || !getship(n, &ship) || (!player->owner && - (getrel - (getnatp(ship.shp_own), - player->cnum) != - ALLIED))) { + if (n < 0 || !getship(n, &ship) + || (!player->owner + && (getrel(getnatp(ship.shp_own), player->cnum) + != ALLIED))) { pr("Not yours\n"); continue; } diff --git a/src/server/shutdown.c b/src/server/shutdown.c index fd483ac7..dd8e4a58 100644 --- a/src/server/shutdown.c +++ b/src/server/shutdown.c @@ -82,13 +82,11 @@ shutdown_sequence(void *unused) shutdown_pending); } else if (shutdown_pending <= 60 && shutdown_pending % 10 == 0) { - pr_wall - ("%sThe server will be shutting down in %d minutes!\n", - header, shutdown_pending); + pr_wall("%sThe server will be shutting down in %d minutes!\n", + header, shutdown_pending); } else if (shutdown_pending % 60 == 0) { - pr_wall - ("%sThe server will be shutting down %d hours from now.\n", - header, (int)(shutdown_pending / 60)); + pr_wall("%sThe server will be shutting down %d hours from now.\n", + header, (int)(shutdown_pending / 60)); } } empth_sleep(now + 60); diff --git a/src/util/land.c b/src/util/land.c index bfca31d4..5d17adfe 100644 --- a/src/util/land.c +++ b/src/util/land.c @@ -112,9 +112,8 @@ s_char **argv; int big; if (argc > 1 && argc != 6) { - printf - ("usage: %s sectrange mincontdist chunksize numchunks numisle\n", - *argv); + printf("usage: %s sectrange mincontdist chunksize numchunks numisle\n", + *argv); return -1; } if (argc == 6) {