From: tokyo4j Date: Sat, 2 Sep 2023 08:32:29 +0000 (+0900) Subject: CodeStyle: double indent in if statement X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=4268991105d2c88c6096ca8cbf577479108a47f2;p=proto%2Flabwc.git CodeStyle: double indent in if statement --- diff --git a/src/seat.c b/src/seat.c index 4af628cc..a565fc78 100644 --- a/src/seat.c +++ b/src/seat.c @@ -96,7 +96,7 @@ configure_libinput(struct wlr_input_device *wlr_input_device) } if (libinput_device_config_scroll_has_natural_scroll(libinput_dev) <= 0 - || dc->natural_scroll < 0) { + || dc->natural_scroll < 0) { wlr_log(WLR_INFO, "natural scroll not configured"); } else { wlr_log(WLR_INFO, "natural scroll configured"); @@ -105,7 +105,7 @@ configure_libinput(struct wlr_input_device *wlr_input_device) } if (libinput_device_config_left_handed_is_available(libinput_dev) <= 0 - || dc->left_handed < 0) { + || dc->left_handed < 0) { wlr_log(WLR_INFO, "left-handed mode not configured"); } else { wlr_log(WLR_INFO, "left-handed mode configured"); @@ -137,7 +137,7 @@ configure_libinput(struct wlr_input_device *wlr_input_device) } if (libinput_device_config_dwt_is_available(libinput_dev) == 0 - || dc->dwt < 0) { + || dc->dwt < 0) { wlr_log(WLR_INFO, "dwt not configured"); } else { wlr_log(WLR_INFO, "dwt configured");