summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/clientiface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clientiface.h b/src/clientiface.h
index 752e2bb8a..89e0f41b9 100644
--- a/src/clientiface.h
+++ b/src/clientiface.h
@@ -141,7 +141,7 @@ namespace con {
class Connection;
}
-#define ARRAYSIZE(a) (sizeof(a) / sizeof((a)[0]))
+#define CI_ARRAYSIZE(a) (sizeof(a) / sizeof((a)[0]))
enum ClientState
{
@@ -433,7 +433,7 @@ public:
{ assert(m_env == 0); m_env = env; }
static std::string state2Name(ClientState state) {
- assert((int) state < ARRAYSIZE(statenames));
+ assert((int) state < CI_ARRAYSIZE(statenames));
return statenames[state];
}