Invert an if condition
authorPeter Hutterer <peter.hutterer@who-t.net>
Thu, 13 Feb 2020 11:09:24 +0000 (21:09 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Wed, 19 Feb 2020 00:37:46 +0000 (10:37 +1000)
commit2056da95174fa8c49e7caee58054809d99bc7dcb
treee4996d2a3d2b90f8bbbb8215ed5188f2efb91c19
parent507bd1ee28444efd78940d7875807d95e15fd1ae
Invert an if condition

Go from:
  if (a != b)
     continue;
  foo;

to:
  if (a == b) {
      foo;
  }

Basically just an indentation change after the condition inversion, makes the
follow-up patch easier to review.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
libevdev/libevdev.c