Fix the build on non-Unix
authorDavid Zeuthen <davidz@redhat.com>
Mon, 25 Jul 2011 13:56:01 +0000 (09:56 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Mon, 25 Jul 2011 13:56:01 +0000 (09:56 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=655148

Signed-off-by: David Zeuthen <davidz@redhat.com>
gio/gdbusconnection.c

index 6711453..77a5df8 100644 (file)
@@ -4970,9 +4970,7 @@ typedef struct
   guint32 serial;
 
   GVariant *value;
-#ifdef G_OS_UNIX
   GUnixFDList *fd_list;
-#endif
 } CallState;
 
 static void
@@ -4983,10 +4981,8 @@ call_state_free (CallState *state)
 
   if (state->value != NULL)
     g_variant_unref (state->value);
-#ifdef G_OS_UNIX
   if (state->fd_list != NULL)
     g_object_unref (state->fd_list);
-#endif
   g_slice_free (CallState, state);
 }