From 72acbe78580bf34dbd4bf539b4fafcf4f446a306 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 19 Jul 2001 23:15:51 +0000 Subject: [PATCH] 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. --- 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 f6c24d0..7589aed 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 */ -- 2.7.4