1
0
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:
berkeviktor@aol.com 2011-01-12 09:14:33 +01:00
parent 3e5e47d00d
commit a747cf62be

View File

@ -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