Fix bad line breaks.

This commit is contained in:
Markus Armbruster 2005-10-11 19:21:57 +00:00
parent 51fed96269
commit 41327b44ca
2 changed files with 2 additions and 4 deletions

View file

@ -114,8 +114,7 @@ display_mark(i_type only_itype, int only_cheapest)
for (sellers = 0; getcomm(sellers, &comm); sellers++) { for (sellers = 0; getcomm(sellers, &comm); sellers++) {
if (comm.com_owner == 0) if (comm.com_owner == 0)
continue; continue;
if (CANT_HAPPEN(comm.com_type <= I_NONE if (CANT_HAPPEN(comm.com_type <= I_NONE || comm.com_type > I_MAX))
|| comm.com_type > I_MAX))
continue; continue;
if (cheapest_items[comm.com_type] != -1) { if (cheapest_items[comm.com_type] != -1) {
getcomm(cheapest_items[comm.com_type], &comm2); getcomm(cheapest_items[comm.com_type], &comm2);

View file

@ -145,8 +145,7 @@ repo_list(struct stats *stat, natid cn, struct natstr *natp)
pr("\n"); pr("\n");
} else { } else {
if ((cap.sct_own != cn) || if ((cap.sct_own != cn) ||
(cap.sct_type != SCT_CAPIT && (cap.sct_type != SCT_CAPIT && cap.sct_type != SCT_MOUNT) ||
cap.sct_type != SCT_MOUNT) ||
(natp->nat_flags & NF_SACKED)) (natp->nat_flags & NF_SACKED))
pr("In flux\n"); pr("In flux\n");
else if (natp->nat_money <= 0) else if (natp->nat_money <= 0)