[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r36218 - libmicrohttpd/src/microhttpd
From: |
gnunet |
Subject: |
[GNUnet-SVN] r36218 - libmicrohttpd/src/microhttpd |
Date: |
Thu, 6 Aug 2015 17:45:25 +0200 |
Author: Karlson2k
Date: 2015-08-06 17:45:25 +0200 (Thu, 06 Aug 2015)
New Revision: 36218
Modified:
libmicrohttpd/src/microhttpd/internal.h
Log:
Correct MHD_MAX() and MHD_MIN() macros
Modified: libmicrohttpd/src/microhttpd/internal.h
===================================================================
--- libmicrohttpd/src/microhttpd/internal.h 2015-08-06 15:38:45 UTC (rev
36217)
+++ libmicrohttpd/src/microhttpd/internal.h 2015-08-06 15:45:25 UTC (rev
36218)
@@ -51,8 +51,8 @@
*/
#define EXTRA_CHECKS MHD_NO
-#define MHD_MAX(a,b) ((a)<(b)) ? (b) : (a)
-#define MHD_MIN(a,b) ((a)<(b)) ? (a) : (b)
+#define MHD_MAX(a,b) (((a)<(b)) ? (b) : (a))
+#define MHD_MIN(a,b) (((a)<(b)) ? (a) : (b))
/**
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r36218 - libmicrohttpd/src/microhttpd,
gnunet <=