st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit c61b34e8e1883faba38f94b0c6775a47b1267e6f
parent 693e2413c8c114c6a95327a609c28be643b9d582
Author: Matthias-Christian Ott <ott@enolink.de>
Date:   Mon,  2 Jun 2008 20:15:52 +0200

correct LENGTH()

Diffstat:
Mstd.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/std.c b/std.c
@@ -13,7 +13,7 @@
 #include <string.h>
 #include <unistd.h>
 
-#define LENGTH(x)    (sizeof (x) / sizeof (x)[0])
+#define LENGTH(x)    (sizeof(x) / sizeof((x)[0]))
 #define MAX(a,b)    (((a) > (b)) ? (a) : (b))
 #define MIN(a,b)    (((a) < (b)) ? (a) : (b))