mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-03 20:30:27 +01:00
test: init an array to zero to silence scan-build
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
6c32f78020
commit
595d870449
1 changed files with 1 additions and 1 deletions
|
|
@ -5996,7 +5996,7 @@ START_TEST(tablet_smoothing)
|
|||
double x, y;
|
||||
struct point {
|
||||
double x, y;
|
||||
} coordinates[100];
|
||||
} coordinates[100] = {0};
|
||||
size_t npoints = 0;
|
||||
size_t idx = 0;
|
||||
struct axis_replacement axes[] = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue