mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-04-05 12:30:42 +02:00
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:
parent
7316a627d6
commit
8696e80136
1 changed files with 1 additions and 1 deletions
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue