Fix indentation in various files

This commit is contained in:
emersion 2019-01-21 17:56:19 +01:00
parent f3ef1f907c
commit a4eb90315e
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
5 changed files with 118 additions and 124 deletions

View file

@ -4,15 +4,15 @@
#include "rootston/input.h"
struct roots_switch {
struct roots_seat *seat;
struct wlr_input_device *device;
struct wl_listener device_destroy;
struct roots_seat *seat;
struct wlr_input_device *device;
struct wl_listener device_destroy;
struct wl_listener toggle;
struct wl_list link;
struct wl_listener toggle;
struct wl_list link;
};
void roots_switch_handle_toggle(struct roots_switch *lid_switch,
struct wlr_event_switch_toggle *event);
struct wlr_event_switch_toggle *event);
#endif // ROOTSTON_SWITCH_H
#endif