summaryrefslogtreecommitdiffstats
path: root/toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch
blob: 840dd401324124e3d2c39578054ded2a5b0fb49a (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/include/syslog.h
+++ b/include/syslog.h
@@ -21,7 +21,7 @@ extern "C" {
 #define	LOG_MAKEPRI(f, p) (((f)<<3)|(p))
 
 #define LOG_MASK(p) (1<<(p))
-#define LOG_UPTO(p) ((1<<(p)+1)-1)
+#define LOG_UPTO(p) ((1<<((p)+1))-1)
 
 #define LOG_KERN     (0<<3)
 #define LOG_USER     (1<<3)