test: correct value type in atou64_test

This needs to be an unsigned 64-bit value, given the constants that are
stored in this field below; unsigned long is 32 bits on some platforms
(e.g. ia32).

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1288>
This commit is contained in:
Adam Sampson 2025-08-01 13:11:50 +01:00 committed by Marge Bot
parent 7f3aa8058a
commit 931dad76a9

View file

@ -1445,7 +1445,7 @@ END_TEST
struct atou64_test {
char *str;
bool success;
unsigned long val;
uint64_t val;
};
START_TEST(safe_atou64_test)