1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-26 20:07:51 +02:00

Merge branch 'fix-sizeof-check' into 'master'

garray: Fix reference to GLIB_SIZEOF_INT

See merge request 
This commit is contained in:
Philip Withnall
2019-09-02 15:17:23 +00:00

@@ -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