mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01: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:
parent
9787790448
commit
a266ac62ea
@ -16,7 +16,7 @@
|
||||
typedef struct
|
||||
{
|
||||
gboolean success;
|
||||
gsize c, a, b;
|
||||
guint64 c, a, b;
|
||||
} Case;
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user