diff options
Diffstat (limited to 'user.h')
-rw-r--r-- | user.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,11 +8,11 @@ struct user_t { char *nick; unsigned long lines[24*4]; unsigned long long words, characters, kicks, kicked; - struct user_t *next; + struct user_t *real_user, *next; }; void user_init(); -struct user_t *user_get(char *_nick); +struct user_t *user_get(char *nick); void user_free(); extern struct user_t *users; |