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 | 7140c6e9415f82c8cd1e970b44126309ac4735fc (patch) | |
tree | f8e705b279e35d48dd2214b98e5fd25646cbeda8 | |
parent | 95e638e8873807bea7a1013712ea478a96cd16c4 (diff) |
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; |