From 4788c813c654c522d336dd9fb1229c1cbdd2d7de Mon Sep 17 00:00:00 2001 From: Haru Date: Thu, 21 Apr 2016 20:38:18 +0200 Subject: Removed the 'len' argument from various message-related functions - The argument was redundant, since the passed value is always the same as the passed string's length (it doesn't make sense otherwise). The argument is implicit now. Less typing and less errors. - Affected functions: `clif->bg_message()`, `bg->send_message()`, `party->send_message()`, `guild->send_message()`. Signed-off-by: Haru Signed-off-by: Haru --- src/map/clif.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map/clif.h') diff --git a/src/map/clif.h b/src/map/clif.h index 7c6516871..459d62d7b 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -943,7 +943,7 @@ struct clif_interface { void (*bg_hp) (struct map_session_data *sd); void (*bg_xy) (struct map_session_data *sd); void (*bg_xy_remove) (struct map_session_data *sd); - void (*bg_message) (struct battleground_data *bgd, int src_id, const char *name, const char *mes, size_t len); + void (*bg_message) (struct battleground_data *bgd, int src_id, const char *name, const char *mes); void (*bg_updatescore) (int16 m); void (*bg_updatescore_single) (struct map_session_data *sd); void (*sendbgemblem_area) (struct map_session_data *sd); -- cgit v1.2.3-60-g2f50