From 94789dd24a931e3659360aa6ffd587b4523a3b98 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sat, 23 May 2020 19:23:40 +0200 Subject: Review usage of sizeof(), unify conventions All functions requiring sizeof() now follow the same convention: NUM_ELEMENTS*NUM_SUBELEMENTS*sizeof() --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core.c') diff --git a/src/core.c b/src/core.c index 3f23fb9c..6ac24ded 100644 --- a/src/core.c +++ b/src/core.c @@ -4687,7 +4687,7 @@ static void InitEvdevInput(void) // Identifies a input device and spawns a thread to handle it if needed static void EventThreadSpawn(char *device) { - #define BITS_PER_LONG (sizeof(long)*8) + #define BITS_PER_LONG (8*sizeof(long)) #define NBITS(x) ((((x) - 1)/BITS_PER_LONG) + 1) #define OFF(x) ((x)%BITS_PER_LONG) #define BIT(x) (1UL<