From ceed08724fc7389ca4e60afa4dadd06b8f72bd0f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 21 Sep 2003 19:14:38 +0300 Subject: [PATCH] Compiler warning fix --HG-- branch : HEAD --- src/imap/imap-fetch-body-section.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imap/imap-fetch-body-section.c b/src/imap/imap-fetch-body-section.c index 4ac16d5ffe..4a4e0ce464 100644 --- a/src/imap/imap-fetch-body-section.c +++ b/src/imap/imap-fetch-body-section.c @@ -414,7 +414,7 @@ static int part_find(struct mail *mail, const struct imap_fetch_body_data *body, num = 0; while (*path != '\0' && *path != '.') { if (*path < '0' || *path > '9') - return NULL; + return FALSE; num = num*10 + (*path - '0'); path++; } -- 2.47.3