toolchain/musl: add version 0.9.15, remove older versions (still broken, but closer...
[openwrt/openwrt.git] / toolchain / musl / patches-0.9.15 / 110-syslog_log_upto_parenthesis.patch
diff --git a/toolchain/musl/patches-0.9.15/110-syslog_log_upto_parenthesis.patch b/toolchain/musl/patches-0.9.15/110-syslog_log_upto_parenthesis.patch
new file mode 100644 (file)
index 0000000..840dd40
--- /dev/null
@@ -0,0 +1,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)