unintentional comma operator

This commit is contained in:
Enno Rehling 2007-04-19 15:14:52 +00:00
parent 8159fdae46
commit 8d804fecdb
1 changed files with 2 additions and 2 deletions

View File

@ -2605,8 +2605,8 @@ out_faction(FILE *file, faction *f)
} else { } else {
fprintf(file, "%s (%.3s/%.3s), %d Einh., %d Pers., $%d, %d NMR\n", fprintf(file, "%s (%.3s/%.3s), %d Einh., %d Pers., $%d, %d NMR\n",
factionname(f), LOC(default_locale, rc_name(f->race, 0)), factionname(f), LOC(default_locale, rc_name(f->race, 0)),
magietypen[f->magiegebiet], f->no_units, f->num_total, f->money), magietypen[f->magiegebiet], f->no_units, f->num_total, f->money,
turn - f->lastorders; turn - f->lastorders);
} }
} }