diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 23:55:13 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 23:55:13 +0100 |
commit | 749bb281d23b374a4d69f5d448ea57dda978e55e (patch) | |
tree | 47a3566664e2bf8b5df48ee4025eed9bb1986163 | |
parent | 033a52797fad906fcdf2583041077299500dc626 (diff) |
Added alignment
-rw-r--r-- | FICS/makerank.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FICS/makerank.c b/FICS/makerank.c index 99a4029..c132e1c 100644 --- a/FICS/makerank.c +++ b/FICS/makerank.c @@ -10,11 +10,11 @@ #define COMPUTER_FILE DEFAULT_LISTS "/computer" #define MAX_LOGIN_NAME 21 -static ENTRY **list; -static ENTRY **sortme; +static ENTRY **list; +static ENTRY **sortme; -static char *rnames[] = {"std", "blitz", "wild", "lightning"}; -static int rtype; +static char *rnames[] = { "std", "blitz", "wild", "lightning" }; +static int rtype; static int GetPlayerInfo(char *fileName, ENTRY *e) |