From: David King Date: Wed, 29 Apr 2009 13:58:35 +0000 (+0200) Subject: Fix ginetaddress.c compile on Linux X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=97fe421518139dcb3477209d3d3c3b6744f54153;p=dana%2Fcg-glib.git Fix ginetaddress.c compile on Linux The GType type definition belongs outside the G_OS_WIN32 typedef. --- diff --git a/gio/ginetaddress.c b/gio/ginetaddress.c index 592f76cb..65accd4b 100644 --- a/gio/ginetaddress.c +++ b/gio/ginetaddress.c @@ -307,11 +307,11 @@ g_inet_address_init (GInetAddress *address) GInetAddress * g_inet_address_new_from_string (const gchar *string) { + volatile GType type; #ifdef G_OS_WIN32 struct sockaddr_storage sa; struct sockaddr_in *sin = (struct sockaddr_in *)&sa; struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa; - volatile GType type; gint len; #else /* !G_OS_WIN32 */ struct in_addr in_addr;