summaryrefslogtreecommitdiff
path: root/src/qcommon/q_shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qcommon/q_shared.h')
-rw-r--r--src/qcommon/q_shared.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h
index 319d8df9..e23f8725 100644
--- a/src/qcommon/q_shared.h
+++ b/src/qcommon/q_shared.h
@@ -636,11 +636,11 @@ vec_t DistanceBetweenLineSegments(
float *s, float *t );
#ifndef MAX
-#define MAX(x,y) (x)>(y)?(x):(y)
+#define MAX(x,y) ((x)>(y)?(x):(y))
#endif
#ifndef MIN
-#define MIN(x,y) (x)<(y)?(x):(y)
+#define MIN(x,y) ((x)<(y)?(x):(y))
#endif
//=============================================