diff options
author | Haru <haru@dotalux.com> | 2016-04-20 15:40:19 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-04-23 19:08:11 +0200 |
commit | e4feddf5198f1c9d45a6c34a95b251df773ab6db (patch) | |
tree | 7d6fb02f933f6772851f375f7c176bd2f32a617f /src/map/intif.c | |
parent | dc23fd3ee6029efe881fa73ed9f4f85e4548bc59 (diff) | |
download | hercules-e4feddf5198f1c9d45a6c34a95b251df773ab6db.tar.gz hercules-e4feddf5198f1c9d45a6c34a95b251df773ab6db.tar.bz2 hercules-e4feddf5198f1c9d45a6c34a95b251df773ab6db.tar.xz hercules-e4feddf5198f1c9d45a6c34a95b251df773ab6db.zip |
Corrected the type of the 'length' argument of various broadcast-related functions
- Variable types were changed to int
- Corrects several warnings in VS2015
- Affected functions: `clif->broadcast()`, `clif->broadcast2()`,
`intif->broadcast()`, `intif->broadcast2()`
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index e71f3df48..85270546e 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -150,7 +150,7 @@ int intif_rename(struct map_session_data *sd, int type, const char *name) } // GM Send a message -int intif_broadcast(const char* mes, size_t len, int type) +int intif_broadcast(const char *mes, int len, int type) { int lp = (type&BC_COLOR_MASK) ? 4 : 0; @@ -182,7 +182,7 @@ int intif_broadcast(const char* mes, size_t len, int type) return 0; } -int intif_broadcast2(const char* mes, size_t len, unsigned int fontColor, short fontType, short fontSize, short fontAlign, short fontY) +int intif_broadcast2(const char *mes, int len, unsigned int fontColor, short fontType, short fontSize, short fontAlign, short fontY) { nullpo_ret(mes); Assert_ret(len < 32000); @@ -222,7 +222,7 @@ int intif_main_message(struct map_session_data* sd, const char* message) snprintf( output, sizeof(output), msg_txt(386), sd->status.name, message ); // send the message using the inter-server broadcast service - intif->broadcast2( output, strlen(output) + 1, 0xFE000000, 0, 0, 0, 0 ); + intif->broadcast2(output, (int)strlen(output) + 1, 0xFE000000, 0, 0, 0, 0); // log the chat message logs->chat( LOG_CHAT_MAINCHAT, 0, sd->status.char_id, sd->status.account_id, mapindex_id2name(sd->mapindex), sd->bl.x, sd->bl.y, NULL, message ); |