diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-12-14 23:11:35 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-12-14 23:11:35 +0100 |
commit | fa0b3201783b6e06966edf4e46645751d943d824 (patch) | |
tree | 406ed3f068b09959398e3d480b588c5d4f47b6ab /src/plugins/irc/irc-batch.c | |
parent | ffa933bcf89b1d470cf816551b515eddd2a10426 (diff) | |
download | weechat-fa0b3201783b6e06966edf4e46645751d943d824.zip |
core: fix style
Diffstat (limited to 'src/plugins/irc/irc-batch.c')
-rw-r--r-- | src/plugins/irc/irc-batch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-batch.c b/src/plugins/irc/irc-batch.c index 337c29a0d..1fe40f2fb 100644 --- a/src/plugins/irc/irc-batch.c +++ b/src/plugins/irc/irc-batch.c @@ -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'; } |