diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-09 21:12:52 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-09 21:12:52 +0100 |
commit | 4b6518180b0571acbcf6e6ce8167591fb60cf49c (patch) | |
tree | e4291e71dda59bec5123da7df5a754130b92c2f1 /FICS/comproc.c | |
parent | 0fd066dda2a06674e09549e72724e3f2e27dda94 (diff) |
Fixed implicit ints
Diffstat (limited to 'FICS/comproc.c')
-rw-r--r-- | FICS/comproc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/comproc.c b/FICS/comproc.c index b2d251c..b615b06 100644 --- a/FICS/comproc.c +++ b/FICS/comproc.c @@ -57,11 +57,11 @@ /* int system(char *arg); */ #endif -const none = 0; -const blitz_rat = 1; -const std_rat = 2; -const wild_rat = 3; -const light_rat = 4; +const int none = 0; +const int blitz_rat = 1; +const int std_rat = 2; +const int wild_rat = 3; +const int light_rat = 4; PUBLIC int com_rating_recalc(int p, param_list param) |