gio/tests/socket-common.c: add a missing #ifdef G_OS_UNIX

This commit is contained in:
Dan Winship 2012-02-03 12:08:40 -05:00
parent d22c36cf00
commit cc4c1e89f4

View File

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