$OpenBSD: patch-gio_gdbusmessage_c,v 1.1 2010/12/29 09:58:45 sebastia Exp $

fix for gcc-2.95

--- gio/gdbusmessage.c.orig	Wed Dec 29 09:10:01 2010
+++ gio/gdbusmessage.c	Wed Dec 29 09:16:01 2010
@@ -1186,7 +1186,9 @@ parse_value_from_blob (GMemoryInputStream    *mis,
           v = g_data_input_stream_read_uint64 (dis, NULL, &local_error);
           if (local_error != NULL)
             goto fail;
-          G_STATIC_ASSERT (sizeof (gdouble) == sizeof (guint64));
+	  {
+            G_STATIC_ASSERT (sizeof (gdouble) == sizeof (guint64));
+	  }
           encoded = (gdouble *) &v;
           ret = g_variant_new_double (*encoded);
         }
