mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 04:30:06 +01:00
test: fix a clang warning
test/test-misc.c:1065:28: warning: Value stored to 't' during its initialization is never read Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
fcfffd80d7
commit
6041d0ba69
1 changed files with 1 additions and 1 deletions
|
|
@ -1062,7 +1062,7 @@ START_TEST(evcode_prop_parser)
|
|||
{ .prop = "none", .success = false },
|
||||
{ .prop = NULL },
|
||||
};
|
||||
struct parser_test_tuple *t = tests;
|
||||
struct parser_test_tuple *t;
|
||||
|
||||
for (int i = 0; tests[i].prop; i++) {
|
||||
bool success;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue