[gaim-migrate @ 12096]

Tue, 22 Feb 2005 16:54:56 +0000

author
Ethan Blanton <elb@pidgin.im>
date
Tue, 22 Feb 2005 16:54:56 +0000
changeset 10624
3d6358e8f70e
parent 10623
33b965c36d84
child 10625
1ea4af762084

[gaim-migrate @ 12096]
'\0' != NULL

src/protocols/irc/irc.c file | annotate | diff | comparison | revisions
--- a/src/protocols/irc/irc.c	Tue Feb 22 16:06:29 2005 +0000
+++ b/src/protocols/irc/irc.c	Tue Feb 22 16:54:56 2005 +0000
@@ -427,7 +427,7 @@
 	struct irc_conn *irc = gc->proto_data;
 	const char *args[2];
 	args[0] = who;
-	args[1] = '\0';
+	args[1] = NULL;
 	irc_cmd_whois(irc, "whois", NULL, args);
 }
 

mercurial