diff options
author | planet36 <planet36@users.noreply.github.com> | 2021-04-13 12:43:18 -0400 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-12-19 02:44:21 +0100 |
commit | c432c981df97f786c683435a4a06bd58fc9a7b18 (patch) | |
tree | f8e705b279e35d48dd2214b98e5fd25646cbeda8 | |
parent | 87c3dd2c36e6d1df577e87fd4d73970fe58a3007 (diff) | |
download | slstatus-c432c981df97f786c683435a4a06bd58fc9a7b18.tar.gz |
Make LEN macro consistent with other suckless repos
Signed-off-by: drkhsh <me@drkhsh.at>
-rw-r--r-- | util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |