1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 01:33:12 +02:00

irc: rename argument in function irc_protocol_is_numeric_command

This commit is contained in:
Sébastien Helleu
2020-03-10 19:19:38 +01:00
parent 2fe27584ff
commit 5f94636b91
+5 -5
View File
@@ -67,16 +67,16 @@
*/
int
irc_protocol_is_numeric_command (const char *str)
irc_protocol_is_numeric_command (const char *command)
{
if (!str || !str[0])
if (!command || !command[0])
return 0;
while (str && str[0])
while (command && command[0])
{
if (!isdigit ((unsigned char)str[0]))
if (!isdigit ((unsigned char)command[0]))
return 0;
str++;
command++;
}
return 1;