aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-service.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-service.c')
-rw-r--r--camel/camel-service.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-service.c b/camel/camel-service.c
index bc4f4d8764..cd66bb9cb1 100644
--- a/camel/camel-service.c
+++ b/camel/camel-service.c
@@ -23,6 +23,7 @@
* USA
*/
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -117,7 +118,7 @@ camel_service_finalize (CamelObject *object)
if (service->url)
camel_url_free (service->url);
if (service->session)
- camel_object_unref (CAMEL_OBJECT (service->session));
+ camel_object_unref (service->session);
e_mutex_destroy (service->priv->connect_lock);
e_mutex_destroy (service->priv->connect_op_lock);
@@ -299,7 +300,7 @@ construct (CamelService *service, CamelSession *session,
service->provider = provider;
service->url = url;
service->session = session;
- camel_object_ref (CAMEL_OBJECT (session));
+ camel_object_ref (session);
service->status = CAMEL_SERVICE_DISCONNECTED;
}