"Anzahl Migranten falsch" Meldung hatte kaputtes fprintf-formatting.

This commit is contained in:
Enno Rehling 2004-01-11 09:39:16 +00:00
parent b6e17aa4ec
commit 9ab04459c0
1 changed files with 1 additions and 1 deletions

View File

@ -3699,7 +3699,7 @@ count_migrants (const faction * f)
u = u->nextF;
}
if (f->num_migrants != n)
log_error(("Anzahl Migranten für (%s) ist falsch: %n statt %n.\n", factionid(f), f->num_migrants, n));
log_error(("Anzahl Migranten für (%s) ist falsch: %d statt %d.\n", factionid(f), f->num_migrants, n));
#endif
return f->num_migrants;
}