changeset 1781:986d5dac10c8 HEAD

Compiler warning fix
author Timo Sirainen <tss@iki.fi>
date Sun, 21 Sep 2003 19:14:38 +0300
parents 7ebd4bb20815
children 2f3d906d99d8
files src/imap/imap-fetch-body-section.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap/imap-fetch-body-section.c	Sat Sep 20 21:45:53 2003 +0300
+++ b/src/imap/imap-fetch-body-section.c	Sun Sep 21 19:14:38 2003 +0300
@@ -414,7 +414,7 @@
 		num = 0;
 		while (*path != '\0' && *path != '.') {
 			if (*path < '0' || *path > '9')
-				return NULL;
+				return FALSE;
 			num = num*10 + (*path - '0');
 			path++;
 		}