diff options
-rw-r--r-- | FICS/ratings.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/ratings.c b/FICS/ratings.c index c3daa62..d377fd9 100644 --- a/FICS/ratings.c +++ b/FICS/ratings.c @@ -1055,12 +1055,12 @@ PRIVATE void DisplayRankHead(int p, int show) pprintf(p, "%s\n\n", Line); } -PRIVATE int CountRankLine(int countComp, char *loginName, - int num, int is_computer) +PRIVATE int +CountRankLine(int countComp, char *loginName, int num, int is_computer) { - if (loginName == NULL || loginName[0] == '\0') - return 0; - return (countComp || !is_computer) && (is_active(num)); + if (loginName == NULL || loginName[0] == '\0') + return 0; + return (countComp || !is_computer) && (is_active(num)); } PRIVATE int |