Make LEN macro consistent with other suckless repos
Signed-off-by: drkhsh <me@drkhsh.at>
This commit is contained in:
parent
87c3dd2c36
commit
c432c981df
1 changed files with 1 additions and 1 deletions
2
util.h
2
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue