garray: Fix reference to GLIB_SIZEOF_INT

This doesn't ever get set. SIZEOF_INT is set though, so use that instead.
This commit is contained in:
Alexander Larsson 2019-09-02 16:05:07 +02:00
parent cf990faae5
commit 4f5a2c19e4

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