diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 22:46:05 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 22:46:05 +0100 |
commit | 985924faff0e993aa2d967e27cec93046a50a34c (patch) | |
tree | 0077ace936c7175f6b923da3337d2ae94c02f7b3 /FICS/comproc.c | |
parent | 6c29e0d5a50b82d9dde7202f63b9bf80eeeefc9f (diff) |
Reformatted functions
Diffstat (limited to 'FICS/comproc.c')
-rw-r--r-- | FICS/comproc.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/FICS/comproc.c b/FICS/comproc.c index 7780537..ae157ce 100644 --- a/FICS/comproc.c +++ b/FICS/comproc.c @@ -61,17 +61,19 @@ const int wild_rat = 3; const int light_rat = 4; -PUBLIC int com_rating_recalc(int p, param_list param) +PUBLIC int +com_rating_recalc(int p, param_list param) { - ASSERT(parray[p].adminLevel >= ADMIN_ADMIN); - rating_recalc(); - return COM_OK; + ASSERT(parray[p].adminLevel >= ADMIN_ADMIN); + rating_recalc(); + return COM_OK; } -PUBLIC int com_more(int p, param_list param) +PUBLIC int +com_more(int p, param_list param) { - pmore_file(p); - return COM_OK; + pmore_file(p); + return COM_OK; } PUBLIC int num_news = -1; |