aboutsummaryrefslogtreecommitdiffhomepage
path: root/std.c
diff options
context:
space:
mode:
authorGravatar Matthias-Christian Ott <ott@enolink.de>2008-06-02 20:15:52 +0200
committerGravatar Matthias-Christian Ott <ott@enolink.de>2008-06-02 20:15:52 +0200
commitc61b34e8e1883faba38f94b0c6775a47b1267e6f (patch)
tree495a2c86f3119158f197a736b27af103f3f41b0e /std.c
parent693e2413c8c114c6a95327a609c28be643b9d582 (diff)
correct LENGTH()
Diffstat (limited to 'std.c')
-rw-r--r--std.c2
1 files changed, 1 insertions, 1 deletions
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))