prepare_report should stay static, remove that change.

This commit is contained in:
Enno Rehling 2016-09-17 15:37:11 +02:00
parent eb7dd051f8
commit 4c7d51990e
2 changed files with 1 additions and 2 deletions

View File

@ -1419,7 +1419,7 @@ void prepare_seen(faction *f)
link_seen(f->seen, f->first, f->last); link_seen(f->seen, f->first, f->last);
} }
void prepare_report(struct report_context *ctx, faction *f) static void prepare_report(struct report_context *ctx, faction *f)
{ {
assert(f->seen); assert(f->seen);
prepare_seen(f); prepare_seen(f);

View File

@ -57,7 +57,6 @@ extern "C" {
const struct unit *u, unsigned int indent, int mode); const struct unit *u, unsigned int indent, int mode);
void prepare_seen(struct faction *f); void prepare_seen(struct faction *f);
void prepare_report(struct report_context *ctx, struct faction *f);
int reports(void); int reports(void);
int write_reports(struct faction *f, time_t ltime); int write_reports(struct faction *f, time_t ltime);
int init_reports(void); int init_reports(void);