summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2020-02-09 16:30:14 +0100
committerGitHub <noreply@github.com>2020-02-09 16:30:14 +0100
commit7f94adde55567a4b9fab41363680dc2bf25ec636 (patch)
tree433ae6d08becae1b91398cdf701ff4c07b72598f /src/common
parent46d9b3632cac33ba44a7bf7a137d8a59c7fe6d01 (diff)
parent6f61075415a002709f8452eb094d5b9d9b760f78 (diff)
downloadhercules-7f94adde55567a4b9fab41363680dc2bf25ec636.tar.gz
hercules-7f94adde55567a4b9fab41363680dc2bf25ec636.tar.bz2
hercules-7f94adde55567a4b9fab41363680dc2bf25ec636.tar.xz
hercules-7f94adde55567a4b9fab41363680dc2bf25ec636.zip
Merge pull request #2601 from Kenpachi2k13/int_party_c_warning
Fix C4018 compiler warning in src\char\int_party.c.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/mmo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h
index f6eca919c..687f5a187 100644
--- a/src/common/mmo.h
+++ b/src/common/mmo.h
@@ -822,8 +822,8 @@ struct party_member {
int char_id;
char name[NAME_LENGTH];
int class;
+ int lv;
unsigned short map;
- unsigned short lv;
unsigned leader : 1,
online : 1;
};