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

garray: Fix reference to GLIB_SIZEOF_INT

See merge request GNOME/glib!1084
This commit is contained in:
Philip Withnall 2019-09-02 15:17:23 +00:00
commit 3e6fe8cd27

View File

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