diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-02-05 07:18:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-02-11 03:22:45 +0300 |
commit | 3514f4405c2a822be2350fed27fe2d15cad7152c (patch) | |
tree | 03bea033e3579d5245e773b82e903c6345b1b4fa /src/char/int_rodex.h | |
parent | 8c04536cf64dd3a7c233d9631eceb23f7207ad9c (diff) | |
download | hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.tar.gz hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.tar.bz2 hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.tar.xz hercules-3514f4405c2a822be2350fed27fe2d15cad7152c.zip |
Change type for class variables from short to int
Diffstat (limited to 'src/char/int_rodex.h')
-rw-r--r-- | src/char/int_rodex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/int_rodex.h b/src/char/int_rodex.h index 43e2d891c..7fae77d8d 100644 --- a/src/char/int_rodex.h +++ b/src/char/int_rodex.h @@ -34,7 +34,7 @@ struct inter_rodex_interface { int (*parse_frommap) (int fd); int (*fromsql) (int char_id, int account_id, int8 opentype, int64 mail_id, struct rodex_maillist *mails); bool (*hasnew) (int char_id, int account_id); - bool (*checkname) (const char *name, int *target_char_id, short *target_class, int *target_level); + bool (*checkname) (const char *name, int *target_char_id, int *target_class, int *target_level); int64 (*savemessage) (struct rodex_message* msg); bool (*updatemail) (int64 mail_id, int8 flag); }; |