mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 17:22:18 -05:00
just to follow conventions
This commit is contained in:
parent
3e5e47d00d
commit
a747cf62be
@ -299,15 +299,15 @@ dccoffer_cb (char *word[], void *userdata)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
checksum (char *userdata[])
|
checksum (char *word[], void *userdata)
|
||||||
{
|
{
|
||||||
if (!stricmp ("GET", userdata[2]))
|
if (!stricmp ("GET", word[2]))
|
||||||
{
|
{
|
||||||
print_size ();
|
print_size ();
|
||||||
} else if (!stricmp ("INC", userdata[2]))
|
} else if (!stricmp ("INC", word[2]))
|
||||||
{
|
{
|
||||||
increase_max_hash_size ();
|
increase_max_hash_size ();
|
||||||
} else if (!stricmp ("DEC", userdata[2]))
|
} else if (!stricmp ("DEC", word[2]))
|
||||||
{
|
{
|
||||||
decrease_max_hash_size ();
|
decrease_max_hash_size ();
|
||||||
} else
|
} else
|
||||||
|
Loading…
Reference in New Issue
Block a user