projects
/
platform
/
upstream
/
libinput.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc7b8d7
)
fallback: add missing curly braces to match the coding style
author
Peter Hutterer
<peter.hutterer@who-t.net>
Thu, 28 May 2020 04:42:12 +0000
(14:42 +1000)
committer
Peter Hutterer
<peter.hutterer@who-t.net>
Wed, 3 Jun 2020 22:32:56 +0000
(22:32 +0000)
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
src/evdev-fallback.c
patch
|
blob
|
history
diff --git
a/src/evdev-fallback.c
b/src/evdev-fallback.c
index d8a0e79844e0f5285f6313634adbc9422549594f..1e10fc31bf03b4a16e6abdf3eb3f91ed7a4aa66c 100644
(file)
--- a/
src/evdev-fallback.c
+++ b/
src/evdev-fallback.c
@@
-1386,8
+1386,9
@@
fallback_pair_tablet_mode(struct evdev_device *keyboard,
return;
/* This filters out all internal keyboard-like devices (Video
* Switch) */
- } else if ((keyboard->tags & EVDEV_TAG_INTERNAL_KEYBOARD) == 0)
+ } else if ((keyboard->tags & EVDEV_TAG_INTERNAL_KEYBOARD) == 0)
{
return;
+ }
if (evdev_device_has_model_quirk(keyboard,
QUIRK_MODEL_TABLET_MODE_NO_SUSPEND))