forked from github/server
CID 26262: short and unsigned types are the devil, use int everywhere for fewer headaches
This commit is contained in:
parent
b3edd8dc5a
commit
4eb6a89821
|
@ -89,11 +89,11 @@ extern "C" {
|
||||||
struct faction *faction;
|
struct faction *faction;
|
||||||
struct building *building;
|
struct building *building;
|
||||||
struct ship *ship;
|
struct ship *ship;
|
||||||
unsigned short number; /* persons */
|
int number; /* persons */
|
||||||
short age;
|
int age;
|
||||||
|
|
||||||
/* skill data */
|
/* skill data */
|
||||||
short skill_size;
|
int skill_size;
|
||||||
struct skill *skills;
|
struct skill *skills;
|
||||||
struct item *items;
|
struct item *items;
|
||||||
reservation *reservations;
|
reservation *reservations;
|
||||||
|
|
Loading…
Reference in New Issue