Indentation fixes; suspect indent-emp is to blame.

This commit is contained in:
Markus Armbruster 2004-02-28 18:06:11 +00:00
parent aa4e268d89
commit e67dca9d29
29 changed files with 89 additions and 133 deletions

View file

@ -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;