mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
Fix warnings
This commit is contained in:
@@ -31,8 +31,8 @@ typedef struct TreeRoot TreeRoot;
|
||||
|
||||
#define TREE_CHECK(x, y) ((x) & (y))
|
||||
#define MASK_BITS(x) ((x + 1) * 8)
|
||||
#define SHIFT_LEFT_MASK(x) (-1 << x)
|
||||
#define SHIFT_RIGHT_MASK(x,y) (x >> y)
|
||||
#define SHIFT_LEFT_MASK(x) ((-1) << (x))
|
||||
#define SHIFT_RIGHT_MASK(x,y) ((x) >> (y))
|
||||
|
||||
#define NETMASK_256 0x100
|
||||
#define NETMASK_128 0x80
|
||||
|
Reference in New Issue
Block a user