summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authorAbhinav <abhinav.prsai@gmail.com>2025-06-04 13:07:38 +0100
committerAbhinav <abhinav.prsai@gmail.com>2025-06-04 13:07:38 +0100
commitc4fab12e5cced595e63af5a7e7eac2cddeae8fbc (patch)
treea1c34ccffb7f0a0bc2ca4399ae87727d9bab8ce6 /src/defs.h
parent3190e636d8080bf7e7b411aec4a73496db5268b9 (diff)
fix vertical stack resizing
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/defs.h b/src/defs.h
index 6115df3..c259738 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -18,7 +18,7 @@
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define LENGTH(X) (sizeof X / sizeof X[0])
#define UDIST(a,b) abs((int)(a) - (int)(b))
-# define CLAMP(x, lo, hi) (( (x) < (lo) ) ? (lo) : ( (x) > (hi) ) ? (hi) : (x))
+#define CLAMP(x, lo, hi) (( (x) < (lo) ) ? (lo) : ( (x) > (hi) ) ? (hi) : (x))
#define MAXCLIENTS 99
#define BIND(mod, key, cmdstr) { (mod), XK_##key, { cmdstr }, False }
#define CALL(mod, key, fnptr) { (mod), XK_##key, { .fn = fnptr }, True }