diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-15 07:18:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-15 07:18:22 -0400 |
commit | d2e796edb7256bb2e2b694a13c86e8bee7056309 (patch) | |
tree | 11bc14a473bdd501de890ee20189ce9e05327ed4 /backend/libinput | |
parent | 5ca88af557178c0081fd408ae008686b79d6dd9c (diff) | |
parent | 7d0bf9a1a77420f09389bda1acafcd4bd42e82f1 (diff) |
Merge pull request #86 from nyorain/master
Fix style issues
Diffstat (limited to 'backend/libinput')
-rw-r--r-- | backend/libinput/events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/libinput/events.c b/backend/libinput/events.c index 0e434b7c..4288701d 100644 --- a/backend/libinput/events.c +++ b/backend/libinput/events.c @@ -120,7 +120,7 @@ static void handle_device_removed(struct wlr_libinput_backend *backend, if (!wlr_devices) { return; } - for (size_t i = 0; i < wlr_devices->length; i++) { + for (size_t i = 0; i < wlr_devices->length; i++) { struct wlr_input_device *wlr_dev = wlr_devices->items[i]; wl_signal_emit(&backend->backend.events.input_remove, wlr_dev); wlr_input_device_destroy(wlr_dev); |