From a055adb58728b4e4994778949b1befb4ffda534e Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Tue, 2 Apr 2024 19:04:25 +0200 Subject: Reformatted CountRankLine() --- FICS/ratings.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'FICS') 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 -- cgit v1.2.3