aboutsummaryrefslogtreecommitdiffstats
path: root/ast_expr2.y
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-16 20:11:05 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-16 20:11:05 +0000
commit532ba2389bc6ef878558fa875a7e2e82407d7cf5 (patch)
tree3c4c4cecb74c8abb6ad8dcbc88cb4a7444d27ab6 /ast_expr2.y
parentfdc21b3182751fc841c296d9430f3371cc620275 (diff)
fix compiler warning on mac (issue #6737)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@13280 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'ast_expr2.y')
-rw-r--r--ast_expr2.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/ast_expr2.y b/ast_expr2.y
index ef3289bc1..728800d27 100644
--- a/ast_expr2.y
+++ b/ast_expr2.y
@@ -29,10 +29,10 @@
#include <asterisk/ast_expr.h>
#include <asterisk/logger.h>
-#ifdef LONG_LONG_MIN
+#if defined(LONG_LONG_MIN) && !defined(QUAD_MIN)
#define QUAD_MIN LONG_LONG_MIN
#endif
-#ifdef LONG_LONG_MAX
+#if defined(LONG_LONG_MAX) && !defined(QUAD_MAX)
#define QUAD_MAX LONG_LONG_MAX
#endif