From 8d804fecdb14cf9549c596b4836f2a0c55e0ea1e Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Thu, 19 Apr 2007 15:14:52 +0000 Subject: [PATCH] unintentional comma operator --- src/common/gamecode/report.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/gamecode/report.c b/src/common/gamecode/report.c index 49df5b739..ff0c99e69 100644 --- a/src/common/gamecode/report.c +++ b/src/common/gamecode/report.c @@ -2605,8 +2605,8 @@ out_faction(FILE *file, faction *f) } else { fprintf(file, "%s (%.3s/%.3s), %d Einh., %d Pers., $%d, %d NMR\n", factionname(f), LOC(default_locale, rc_name(f->race, 0)), - magietypen[f->magiegebiet], f->no_units, f->num_total, f->money), - turn - f->lastorders; + magietypen[f->magiegebiet], f->no_units, f->num_total, f->money, + turn - f->lastorders); } }