mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-04-19 17:10:54 +02:00
fallback: fix a coverity warning
Value stored to 'rect' during its initialization is never read Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
8011d991fe
commit
727a504e0d
1 changed files with 1 additions and 1 deletions
|
|
@ -1225,7 +1225,7 @@ fallback_interface_update_rect(struct evdev_dispatch *evdev_dispatch,
|
|||
uint64_t time)
|
||||
{
|
||||
struct fallback_dispatch *dispatch = fallback_dispatch(evdev_dispatch);
|
||||
struct device_coord_rect rect = {0};
|
||||
struct device_coord_rect rect;
|
||||
|
||||
assert(phys_rect);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue