all repos — st @ 6b56cbf9cc597b529f244ee8fcb1cbbcc338c7b7

st (suckless terminal) config

misplaced parenthesis in LEN macro
noname@inventati.org noname@inventati.org
commit

6b56cbf9cc597b529f244ee8fcb1cbbcc338c7b7

parent

3269bf213d8fdbfb78e9eb1cc9eb677114508e57

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -67,7 +67,7 @@

/* macros */ #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) < (b) ? (b) : (a)) -#define LEN(a) (sizeof(a) / sizeof(a[0])) +#define LEN(a) (sizeof(a) / sizeof(a)[0]) #define DEFAULT(a, b) (a) = (a) ? (a) : (b) #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b)) #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)