1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 08:13:14 +02:00

core: fix style

This commit is contained in:
Sébastien Helleu
2023-12-14 23:11:35 +01:00
parent ffa933bcf8
commit fa0b320178
16 changed files with 54 additions and 49 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ irc_batch_generate_random_ref (char *string, int size)
length_chars = strlen (chars);
for (i = 0; i < size; i++)
{
string[i] = chars[rand() % length_chars];
string[i] = chars[rand () % length_chars];
}
string[size] = '\0';
}