Use int instead of long to count people

Code dealing with counting people mixes int and long pretty
haphazardly.  Harmless, because practical populations fit into int
easily on any machine capable of running the server.  Clean up anyway.
This commit is contained in:
Markus Armbruster 2013-01-13 15:04:24 +01:00
parent 948757cb0c
commit 5d7f011900
6 changed files with 12 additions and 12 deletions

View file

@ -708,7 +708,7 @@ extern int prod_plane(int, int, struct bp *, int);
extern void populace(struct natstr *, struct sctstr *, int);
extern int total_work(int, int, int, int, int, int);
/* prepare.c */
extern void tax(struct sctstr *, struct natstr *, int, long *, int *,
extern void tax(struct sctstr *, struct natstr *, int, int *, int *,
int *, int *);
extern int upd_slmilcosts(natid, int);
extern void prepare_sects(int, struct bp *);