summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorplanet36 <planet36@users.noreply.github.com>2021-04-13 12:43:18 -0400
committerdrkhsh <me@drkhsh.at>2022-12-19 02:44:21 +0100
commitc432c981df97f786c683435a4a06bd58fc9a7b18 (patch)
treef8e705b279e35d48dd2214b98e5fd25646cbeda8
parent87c3dd2c36e6d1df577e87fd4d73970fe58a3007 (diff)
downloadslstatus-c432c981df97f786c683435a4a06bd58fc9a7b18.tar.gz
Make LEN macro consistent with other suckless repos
Signed-off-by: drkhsh <me@drkhsh.at>
-rw-r--r--util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.h b/util.h
index 7f1f26c..cf4b027 100644
--- a/util.h
+++ b/util.h
@@ -3,7 +3,7 @@
extern char buf[1024];
-#define LEN(x) (sizeof (x) / sizeof *(x))
+#define LEN(x) (sizeof(x) / sizeof((x)[0]))
extern char *argv0;