mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 04:30:06 +01:00
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:
parent
7f3aa8058a
commit
931dad76a9
1 changed files with 1 additions and 1 deletions
|
|
@ -1445,7 +1445,7 @@ END_TEST
|
|||
struct atou64_test {
|
||||
char *str;
|
||||
bool success;
|
||||
unsigned long val;
|
||||
uint64_t val;
|
||||
};
|
||||
|
||||
START_TEST(safe_atou64_test)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue