[gupnp: 13/25] test: Fix compiler warnings regarding call-backs
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gupnp: 13/25] test: Fix compiler warnings regarding call-backs
- Date: Thu, 30 Dec 2021 09:13:00 +0000 (UTC)
commit 35e70f36d6d4cb592c18498687cb992a1fcdc198
Author: Jens Georg <mail jensge org>
Date: Sun Dec 26 15:48:32 2021 +0100
test: Fix compiler warnings regarding call-backs
tests/test-context.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/tests/test-context.c b/tests/test-context.c
index 3bb5490..151f41a 100644
--- a/tests/test-context.c
+++ b/tests/test-context.c
@@ -211,7 +211,7 @@ test_gupnp_context_http_ranged_requests (void)
g_object_unref (context);
// Make sure the source teardown handlers get run so we don't confuse valgrind
- g_timeout_add (500, g_main_loop_quit, loop);
+ g_timeout_add (500, (GSourceFunc) g_main_loop_quit, loop);
g_main_loop_run (loop);
g_main_loop_unref (loop);
g_object_unref (session);
@@ -352,7 +352,7 @@ test_default_handler_on_read_async (GObject *source,
{
GError *error = NULL;
GBytes *response =
- soup_session_send_and_read_finish (source, res, &error);
+ soup_session_send_and_read_finish (SOUP_SESSION (source), res, &error);
g_assert_nonnull (response);
g_assert_no_error (error);
g_bytes_unref (response);
@@ -376,7 +376,7 @@ test_gupnp_context_http_default_handler ()
for (int i = 0; i < 10; i++) {
guint32 random = g_random_int ();
g_checksum_update (checksum,
- (const char *) &random,
+ (const guchar *) &random,
sizeof (random));
char *base = g_uri_to_string (uris->data);
char *new_uri = g_uri_resolve_relative (
@@ -406,11 +406,11 @@ test_gupnp_context_http_default_handler ()
SOUP_STATUS_NOT_FOUND);
g_object_unref (msg);
}
- g_slist_free_full (uris, g_uri_unref);
+ g_slist_free_full (uris, (GDestroyNotify) g_uri_unref);
g_checksum_free (checksum);
g_object_unref (context);
// Make sure the source teardown handlers get run so we don't confuse valgrind
- g_timeout_add (500, g_main_loop_quit, loop);
+ g_timeout_add (500, (GSourceFunc) g_main_loop_quit, loop);
g_main_loop_run (loop);
g_main_loop_unref (loop);
g_object_unref (session);
@@ -423,7 +423,7 @@ test_default_language_on_read_async (GObject *source,
{
GError *error = NULL;
GBytes *response =
- soup_session_send_and_read_finish (source, res, &error);
+ soup_session_send_and_read_finish (SOUP_SESSION (source), res, &error);
g_assert_no_error (error);
g_assert_nonnull (response);
g_bytes_unref (response);
@@ -631,7 +631,7 @@ test_gupnp_context_http_language_serve_file ()
g_slist_free_full (uris, (GDestroyNotify) g_uri_unref);
// Make sure the source teardown handlers get run so we don't confuse valgrind
- g_timeout_add (500, (GSourceFunc)g_main_loop_quit, d.loop);
+ g_timeout_add (500, (GSourceFunc) g_main_loop_quit, d.loop);
g_main_loop_run (d.loop);
g_main_loop_unref (d.loop);
g_object_unref (session);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]