From c2930d5e08354115e2ff9d0b605252a1c351cde7 Mon Sep 17 00:00:00 2001 From: Pierre-Luc Beaudoin Date: Sat, 7 Mar 2009 00:10:57 +0200 Subject: [PATCH] Missing NULL at the end --- champlain/champlain-network-map-source.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/champlain/champlain-network-map-source.c b/champlain/champlain-network-map-source.c index ebb5c94..919586e 100644 --- a/champlain/champlain-network-map-source.c +++ b/champlain/champlain-network-map-source.c @@ -479,7 +479,8 @@ champlain_network_map_source_get_tile (ChamplainMapSource *map_source, ctx->tile = tile; if (!soup_session) - soup_session = soup_session_async_new_with_options ("proxy-uri", soup_uri_new (priv->proxy_uri)); + soup_session = soup_session_async_new_with_options ("proxy-uri", + soup_uri_new (priv->proxy_uri), NULL); uri = champlain_network_map_source_get_tile_uri (network_map_source, champlain_tile_get_x (tile), champlain_tile_get_y (tile), -- 2.39.5