diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-02 22:56:32 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-02 22:56:32 +0200 |
commit | 61071687a3b569390cfccfff13d004823e1dc445 (patch) | |
tree | 933bbfb812c52a84ddf0417b1faf0b19b9f21135 /FICS | |
parent | 9b0da460b3afac0952e2b9fc4cb0069577e7ba96 (diff) |
Fixed the struct
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/ratings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/ratings.h b/FICS/ratings.h index 32cffd4..06b83b8 100644 --- a/FICS/ratings.h +++ b/FICS/ratings.h @@ -44,8 +44,8 @@ #include "command.h" typedef struct _rateStruct { - char name[MAX_LOGIN_NAME]; - int rating; + char name[MAX_LOGIN_NAME]; + int rating; } rateStruct; extern int Best(int, param_list, int); |