From 92522348e00dc1d17259fa4e76be4e37a31b7536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Thu, 6 Oct 2022 23:49:13 +0200 Subject: [PATCH] extension: Fix the UnixSocketAddress include guard --- src/_frida.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_frida.c b/src/_frida.c index 24e1df2..4b376e7 100644 --- a/src/_frida.c +++ b/src/_frida.c @@ -6,7 +6,7 @@ #include #include -#if defined (G_OS_UNIX) && !defined (G_TYPE_UNIX_SOCKET_ADDRESS_TYPE) +#if defined (G_OS_UNIX) && !defined (G_TYPE_UNIX_SOCKET_ADDRESS) # include #endif