diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-07-20 07:15:51 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-20 07:15:51 +0800 |
commit | fde6b5b8bb6c7667e3069f10f803848c4a448591 (patch) | |
tree | e157a00ff70d17b1e6313d113b3d0918177b657c /camel/providers | |
parent | 32030cf58f4caaa592f978a6c5226c53df9fd8ac (diff) | |
download | gsoc2013-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
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 2 |
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 */ |