X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=contrib%2Fpackage%2Fuhttpd%2Fsrc%2Fuhttpd-utils.h;h=01b95afca744e1b817aef40cf35ac4350b997b8c;hb=0f18174879e121e5c5a64de0e3cb88a9c78e2b37;hp=ec7dbcb9b4eb70933ac9d3f5a1f10afe92699c5a;hpb=87329b4522760f0a4a9a7962a52faf76d2db6f55;p=project%2Fluci.git diff --git a/contrib/package/uhttpd/src/uhttpd-utils.h b/contrib/package/uhttpd/src/uhttpd-utils.h index ec7dbcb9b..01b95afca 100644 --- a/contrib/package/uhttpd/src/uhttpd-utils.h +++ b/contrib/package/uhttpd/src/uhttpd-utils.h @@ -4,8 +4,8 @@ #include #include -#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]))