diff options
Diffstat (limited to 'src/protocol/ultimate3.c')
-rw-r--r-- | src/protocol/ultimate3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/ultimate3.c b/src/protocol/ultimate3.c index 714e4c089..6eb4bd144 100644 --- a/src/protocol/ultimate3.c +++ b/src/protocol/ultimate3.c @@ -703,7 +703,7 @@ void ultimate3_cmd_svsadmin(char *server, int set) void ultimate3_cmd_sgline(char *mask, char *reason) { - send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason); + send_cmd(NULL, "SGLINE %d :%s:%s", (int)strlen(mask), mask, reason); } void ultimate3_cmd_remove_akill(char *user, char *host) |