test: fix a data type in the utils test

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1059>
This commit is contained in:
Peter Hutterer 2024-10-12 20:21:20 +10:00
parent 7316a627d6
commit 8696e80136

View file

@ -353,7 +353,7 @@ START_TEST(dimension_prop_parser)
struct parser_test_dimension {
char *tag;
bool success;
int x, y;
size_t x, y;
} tests[] = {
{ "10x10", true, 10, 10 },
{ "1x20", true, 1, 20 },