mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-16 04:28:05 +02:00
gdbus-test-codegen: Cast to void* to printf "%p"
to suppress a compiler error with stricter warnings enabled (GCC): gdbus-test-codegen.c: In function ‘on_handle_get_self’: gdbus-test-codegen.c:403:26: error: format ‘%p’ expects argument of type ‘void *’, but argument 2 has type ‘GThread * {aka struct _GThread *}’ [-Werror=format=] s = g_strdup_printf ("%p", g_thread_self ()); https://bugzilla.gnome.org/show_bug.cgi?id=792099
This commit is contained in:
parent
54b04f74bd
commit
b441c21a09
@ -405,7 +405,7 @@ on_handle_get_self (FooiGenMethodThreads *object,
|
|||||||
gpointer user_data)
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
gchar *s;
|
gchar *s;
|
||||||
s = g_strdup_printf ("%p", g_thread_self ());
|
s = g_strdup_printf ("%p", (void *)g_thread_self ());
|
||||||
foo_igen_method_threads_complete_get_self (object, invocation, s);
|
foo_igen_method_threads_complete_get_self (object, invocation, s);
|
||||||
g_free (s);
|
g_free (s);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user