summaryrefslogtreecommitdiffstats
path: root/toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-09 20:34:21 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-05-09 20:34:21 +0000
commita424aa612396a0105889664486b68ab0a3e91b2e (patch)
tree3ded921cf225a0a9e3f0046867bae239db6d6fdc /toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch
parent7054f27c6f6e4e2e3ffcd4c77ef4fc0b433fb11d (diff)
downloadmaster-31e0f0ae-a424aa612396a0105889664486b68ab0a3e91b2e.tar.gz
master-31e0f0ae-a424aa612396a0105889664486b68ab0a3e91b2e.tar.bz2
master-31e0f0ae-a424aa612396a0105889664486b68ab0a3e91b2e.zip
toolchain/musl: add version 0.9.10
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36591
Diffstat (limited to 'toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch')
-rw-r--r--toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch b/toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch
new file mode 100644
index 0000000000..840dd40132
--- /dev/null
+++ b/toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch
@@ -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)