This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit a367c6ede6d1d38e98349c096301b557999707ae Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Mar 20 06:44:47 2021 +0100 src/test/sshtest.c: fix compiler warning: %p accepts void * only. --- src/test/sshtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/sshtest.c b/src/test/sshtest.c index 710b6a1..b1c827e 100644 --- a/src/test/sshtest.c +++ b/src/test/sshtest.c @@ -81,7 +81,7 @@ static _Bool test_x2goclient_network_ssh_properties_socket (const GString * cons GSocketAddress *sock_addr = NULL; g_object_get (G_OBJECT (net_ssh), "socket", &sock_addr, NULL); - g_printf ("sock_addr: %p\n", sock_addr); + g_printf ("sock_addr: %p\n", (void*) (sock_addr)); ret = (!(!(sock_addr))); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git