mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-06-10 08:50:18 +00:00
Use size_t for strlen length temporaries
This commit is contained in:
@@ -4397,7 +4397,7 @@ void
|
||||
check_special_chars (char *cmd, int do_ascii) /* check for %X */
|
||||
{
|
||||
int occur = 0;
|
||||
int len = strlen (cmd);
|
||||
size_t len = strlen (cmd);
|
||||
char *buf, *utf;
|
||||
char tbuf[4];
|
||||
int i = 0, j = 0;
|
||||
|
||||
Reference in New Issue
Block a user