changeset 12440:bfd3aca4647a

[gaim-migrate @ 14747] Fix a warning grim noticed. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 09 Dec 2005 07:26:29 +0000
parents 97167ff86683
children d7dc4b33fd69
files src/proxy.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/proxy.c	Fri Dec 09 06:43:51 2005 +0000
+++ b/src/proxy.c	Fri Dec 09 07:26:29 2005 +0000
@@ -1084,7 +1084,7 @@
 
 	/* Read the contents */
 	p = g_strrstr(inputline, "Content-Length: ");
-	if(p>0) {
+	if(p != NULL) {
 		gchar *tmp;
 		int len = 0;
 		char tmpc;