diff options
Diffstat (limited to 'contrib/package/uhttpd/src/uhttpd-utils.h')
-rw-r--r-- | contrib/package/uhttpd/src/uhttpd-utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-utils.h b/contrib/package/uhttpd/src/uhttpd-utils.h index ec7dbcb9b4..01b95afca7 100644 --- a/contrib/package/uhttpd/src/uhttpd-utils.h +++ b/contrib/package/uhttpd/src/uhttpd-utils.h @@ -4,8 +4,8 @@ #include <fcntl.h> #include <sys/stat.h> -#define min(x, y) ((x) < (y)) ? (x) : (y) -#define max(x, y) ((x) > (y)) ? (x) : (y) +#define min(x, y) (((x) < (y)) ? (x) : (y)) +#define max(x, y) (((x) > (y)) ? (x) : (y)) #define array_size(x) \ (sizeof(x) / sizeof(x[0])) |