aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-08-14 13:12:09 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-08-27 23:09:46 -0600
commit0312720ae8599904e847eed377cc5ee222905835 (patch)
treedb7b38765081077db629d8327564b3dad30dad56 /dwl.c
parent6de87121e2cf05119ddbfb501c87766912aa4d0a (diff)
downloaddwl-0312720ae8599904e847eed377cc5ee222905835.tar.gz
remove a space before parenthesis in function calls
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwl.c b/dwl.c
index 94e01b0..85e7f36 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1094,10 +1094,10 @@ createpointer(struct wlr_pointer *pointer)
libinput_device_config_middle_emulation_set_enabled(device, middle_button_emulation);
if (libinput_device_config_scroll_get_methods(device) != LIBINPUT_CONFIG_SCROLL_NO_SCROLL)
- libinput_device_config_scroll_set_method (device, scroll_method);
+ libinput_device_config_scroll_set_method(device, scroll_method);
if (libinput_device_config_click_get_methods(device) != LIBINPUT_CONFIG_CLICK_METHOD_NONE)
- libinput_device_config_click_set_method (device, click_method);
+ libinput_device_config_click_set_method(device, click_method);
if (libinput_device_config_send_events_get_modes(device))
libinput_device_config_send_events_set_mode(device, send_events_mode);