summaryrefslogtreecommitdiff
path: root/src/libinput-util.h
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2016-02-05 10:15:35 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2016-02-05 15:39:58 +1000
commit4392cb5796fb02e92418fbce192cfdb1fd5c9107 (patch)
treed4133553a6e95046ad8dce1edececbee76b92adb /src/libinput-util.h
parentcbf775ba3d73a9552957831b9a85db4b974706ae (diff)
Indentation fixes
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/libinput-util.h')
-rw-r--r--src/libinput-util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libinput-util.h b/src/libinput-util.h
index 522c19cf..66748eac 100644
--- a/src/libinput-util.h
+++ b/src/libinput-util.h
@@ -148,19 +148,19 @@ msleep(unsigned int ms)
static inline int
long_bit_is_set(const unsigned long *array, int bit)
{
- return !!(array[bit / LONG_BITS] & (1LL << (bit % LONG_BITS)));
+ return !!(array[bit / LONG_BITS] & (1LL << (bit % LONG_BITS)));
}
static inline void
long_set_bit(unsigned long *array, int bit)
{
- array[bit / LONG_BITS] |= (1LL << (bit % LONG_BITS));
+ array[bit / LONG_BITS] |= (1LL << (bit % LONG_BITS));
}
static inline void
long_clear_bit(unsigned long *array, int bit)
{
- array[bit / LONG_BITS] &= ~(1LL << (bit % LONG_BITS));
+ array[bit / LONG_BITS] &= ~(1LL << (bit % LONG_BITS));
}
static inline void