aboutsummaryrefslogtreecommitdiffstats
path: root/ast_expr2.y
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-16 20:05:00 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-16 20:05:00 +0000
commitefe12756ecf5a900b9e7da5af80a2032a9d1d18d (patch)
treed48900dc05f65437470490d4cb9fc2d37def8f38 /ast_expr2.y
parent870f7528e4222bddc7a60178002ce0fa0feef5e3 (diff)
Bug 6737 - Fix compile warning on OS X
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@13279 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