From fde6b5b8bb6c7667e3069f10f803848c4a448591 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 19 Jul 2001 23:15:51 +0000 Subject: Fixed a compiler warning about returning without a value in a non-void 2001-07-19 Jeffrey Stedfast * providers/imap/camel-imap-store.c (create_folder): Fixed a compiler warning about returning without a value in a non-void function. Blah. svn path=/trunk/; revision=11247 --- camel/providers/imap/camel-imap-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index f6c24d09cd..7589aedcab 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -1041,7 +1041,7 @@ create_folder (CamelStore *store, const char *parent_name, delete_folder (store, parent_name, &internal_ex); if (camel_exception_is_set (&internal_ex)) { camel_exception_xfer (ex, &internal_ex); - return; + return NULL; } /* add the dirsep to the end of parent_name */ -- cgit v1.2.3