summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2019-09-02 15:17:23 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2019-09-02 15:17:23 +0000
commit3e6fe8cd27b3832c2cc61a75d90a972d4574ce47 (patch)
treeb1dfd6a01faff29b249ced6d97881abe3ee9b16d
parentdaa308dd6eff133abe0dcb8e8396e72700169c0a (diff)
parent4f5a2c19e4c236cf54e8c180b61cb7c8f05108f7 (diff)
downloadglib-3e6fe8cd27b3832c2cc61a75d90a972d4574ce47.tar.gz
Merge branch 'fix-sizeof-check' into 'master'
garray: Fix reference to GLIB_SIZEOF_INT See merge request GNOME/glib!1084
-rw-r--r--glib/garray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/garray.c b/glib/garray.c
index d2c8cd8a5..38f64b82d 100644
--- a/glib/garray.c
+++ b/glib/garray.c
@@ -883,7 +883,7 @@ g_nearest_pow (guint num)
n |= n >> 4;
n |= n >> 8;
n |= n >> 16;
-#if GLIB_SIZEOF_INT == 8
+#if SIZEOF_INT == 8
n |= n >> 32;
#endif