mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 08:26:14 +01:00
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:
parent
cf990faae5
commit
4f5a2c19e4
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user