gio/tests/socket-common.c: add a missing #ifdef G_OS_UNIX
authorDan Winship <danw@gnome.org>
Fri, 3 Feb 2012 17:08:40 +0000 (12:08 -0500)
committerDan Winship <danw@gnome.org>
Fri, 3 Feb 2012 17:58:53 +0000 (12:58 -0500)
gio/tests/socket-common.c

index 160195a..e59fa9c 100644 (file)
@@ -1,5 +1,6 @@
 /* #included into both socket-client.c and socket-server.c */
 
+#ifdef G_OS_UNIX
 static const char *unix_socket_address_types[] = {
   "invalid",
   "anonymous",
@@ -7,6 +8,7 @@ static const char *unix_socket_address_types[] = {
   "abstract",
   "padded"
 };
+#endif
 
 static char *
 socket_address_to_string (GSocketAddress *address)