From 8696e80136983ae986c3a232829261df4731a084 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Sat, 12 Oct 2024 20:21:20 +1000 Subject: [PATCH] test: fix a data type in the utils test Part-of: --- test/test-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-utils.c b/test/test-utils.c index d1b7345a..314ae13a 100644 --- a/test/test-utils.c +++ b/test/test-utils.c @@ -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 },