formal correction

This commit is contained in:
Philipp Dreher 2015-11-02 18:06:19 +01:00
parent b107ddadf5
commit 07fd3dc970

View file

@ -1346,10 +1346,14 @@ void writefaction(struct gamedata *data, const faction * f)
WRITE_SECTION(data->store);
for (sf = f->allies; sf; sf = sf->next) {
int no;
int status;
assert(sf->faction);
int no = sf->faction->no;
int status = alliedfaction(NULL, f, sf->faction, HELP_ALL);
no = sf->faction->no;
status = alliedfaction(NULL, f, sf->faction, HELP_ALL);
if (status != 0) {
WRITE_INT(data->store, no);
WRITE_INT(data->store, sf->status);