mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-09 02:34:05 +02:00
tests: fix a test on 32-bit builds
We were trying to squeeze 64-bit test vectors into gsize, which is fine on 64bit systems but doesn't work very well on 32-bit. Change that to a guint64.
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
gboolean success;
|
gboolean success;
|
||||||
gsize c, a, b;
|
guint64 c, a, b;
|
||||||
} Case;
|
} Case;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user