aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-20 07:15:51 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-20 07:15:51 +0800
commitfde6b5b8bb6c7667e3069f10f803848c4a448591 (patch)
treee157a00ff70d17b1e6313d113b3d0918177b657c
parent32030cf58f4caaa592f978a6c5226c53df9fd8ac (diff)
downloadgsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.tar
gsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.tar.gz
gsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.tar.bz2
gsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.tar.lz
gsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.tar.xz
gsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.tar.zst
gsoc2013-evolution-fde6b5b8bb6c7667e3069f10f803848c4a448591.zip
Fixed a compiler warning about returning without a value in a non-void
2001-07-19 Jeffrey Stedfast <fejj@ximian.com> * 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
-rw-r--r--camel/providers/imap/camel-imap-store.c2
1 files changed, 1 insertions, 1 deletions
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 */