summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Wagner <info@gunibert.de>2021-12-22 23:01:48 +0100
committerGünther Wagner <info@gunibert.de>2022-01-12 19:45:21 +0100
commit0f7256dee5d3bf47149b9441527b1840916867cf (patch)
tree6a5ba51eaed6b0e2f26cfc4a492c476b5c5798ae
parent7c014077756c364537d41588578b49a1de9885cb (diff)
downloadlibrest-0f7256dee5d3bf47149b9441527b1840916867cf.tar.gz
fixed sentinel warning in tests
-rw-r--r--tests/proxy-continuous.c2
-rw-r--r--tests/threaded.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/proxy-continuous.c b/tests/proxy-continuous.c
index efc3de1..f489af5 100644
--- a/tests/proxy-continuous.c
+++ b/tests/proxy-continuous.c
@@ -154,7 +154,7 @@ continuous ()
GSList *uris;
- server = soup_server_new (NULL);
+ server = soup_server_new (NULL, NULL);
soup_server_listen_local (server, 0, 0, &error);
g_assert_no_error (error);
diff --git a/tests/threaded.c b/tests/threaded.c
index 411361c..385156c 100644
--- a/tests/threaded.c
+++ b/tests/threaded.c
@@ -95,7 +95,7 @@ static void ping ()
int i;
GSList *uris;
- server = soup_server_new (NULL);
+ server = soup_server_new (NULL, NULL);
soup_server_listen_local (server, 0, 0, &error);
g_assert_no_error (error);