evolution r36068 - branches/mail-dbus-remoting/mail



Author: sragavan
Date: Tue Aug 26 05:18:32 2008
New Revision: 36068
URL: http://svn.gnome.org/viewvc/evolution?rev=36068&view=rev

Log:
Fix compiler warnings


Modified:
   branches/mail-dbus-remoting/mail/camel-store-remote-impl.c

Modified: branches/mail-dbus-remoting/mail/camel-store-remote-impl.c
==============================================================================
--- branches/mail-dbus-remoting/mail/camel-store-remote-impl.c	(original)
+++ branches/mail-dbus-remoting/mail/camel-store-remote-impl.c	Tue Aug 26 05:18:32 2008
@@ -180,7 +180,7 @@
 			goto fail;
 		}
 
-		camel_exception_init(ex);
+		ex = camel_exception_new();
 		/* FIXME: camel_store_delete_folder should have sane return values and the exception should be used properly */
 		camel_store_delete_folder(store, folder_name, ex);
 		camel_exception_free(ex);
@@ -214,7 +214,7 @@
 			goto fail;
 		}
 
-		camel_exception_init(ex);
+		ex = camel_exception_new ();
 		/* FIXME: camel_store_delete_folder should have sane return values and the exception should be used properly */
 		camel_store_rename_folder(store, old_folder_name,
 					  new_folder_name, ex);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]