From 75b1565fdc3ddb9741a597a3a14bad7383ac763c Mon Sep 17 00:00:00 2001
From: Matthias-Christian Ott <ott@enolink.de>
Date: Mon, 2 Jun 2008 20:15:52 +0200
Subject: correct LENGTH()

---
 std.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'std.c')

diff --git a/std.c b/std.c
index 5368f67..78e9237 100644
--- 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))
 
-- 
cgit v1.2.3-70-g09d2