test: fix a data type in the utils test
authorPeter Hutterer <peter.hutterer@who-t.net>
Sat, 12 Oct 2024 10:21:20 +0000 (20:21 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Tue, 15 Oct 2024 02:44:27 +0000 (12:44 +1000)
Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1059>

test/test-utils.c

index d1b7345a42b6d99e660f0f521037e416a8e4d101..314ae13afb3691bddebd8a31408b9118ba36eaf1 100644 (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 },