From 5c807f30e4890357d91cb62bbc51be55722396cd Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 2 Feb 2015 14:14:35 -0500 Subject: [PATCH] Add more parenthesis to the definition of ARRAY_LENGTH --- src/common/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/util.h b/src/common/util.h index 175a078c6b..ea774bd9bd 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -565,7 +565,7 @@ STATIC int format_helper_exit_status(unsigned char child_state, const char *libor_get_digests(void); -#define ARRAY_LENGTH(x) (sizeof(x)) / sizeof(x[0]) +#define ARRAY_LENGTH(x) ((sizeof(x)) / sizeof(x[0])) #endif -- 2.47.3