summaryrefslogtreecommitdiff
path: root/rest/rest-proxy.c
diff options
context:
space:
mode:
authorRoss Burton <ross@linux.intel.com>2010-09-01 14:56:55 +0100
committerRoss Burton <ross@linux.intel.com>2010-09-01 14:56:55 +0100
commit661d0cfc5efc340086072c9d94626fda46fc471a (patch)
treeb991aeb305439f6e320d099b4c1faa094db74dc1 /rest/rest-proxy.c
parentac11a9140515a1145d89055dd8d9a0837fc21700 (diff)
downloadlibrest-661d0cfc5efc340086072c9d94626fda46fc471a.tar.gz
Fix code formatting
Diffstat (limited to 'rest/rest-proxy.c')
-rw-r--r--rest/rest-proxy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/rest/rest-proxy.c b/rest/rest-proxy.c
index 7c9c1db..25d9148 100644
--- a/rest/rest-proxy.c
+++ b/rest/rest-proxy.c
@@ -212,6 +212,7 @@ static void
rest_proxy_init (RestProxy *self)
{
RestProxyPrivate *priv = GET_PRIVATE (self);
+ SoupSessionFeature *cookie_jar;
priv->session = soup_session_async_new ();
priv->session_sync = soup_session_sync_new ();
@@ -232,7 +233,7 @@ rest_proxy_init (RestProxy *self)
g_object_unref (logger);
}
- SoupSessionFeature *cookie_jar = soup_cookie_jar_new ();
+ cookie_jar = soup_cookie_jar_new ();
soup_session_add_feature (priv->session, cookie_jar);
soup_session_add_feature (priv->session_sync, cookie_jar);
g_object_unref (cookie_jar);