diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-05-09 20:34:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-05-09 20:34:21 +0000 |
commit | a424aa612396a0105889664486b68ab0a3e91b2e (patch) | |
tree | 3ded921cf225a0a9e3f0046867bae239db6d6fdc /toolchain/musl/patches-0.9.10/130-syslog_log_upto_parenthesis.patch | |
parent | 7054f27c6f6e4e2e3ffcd4c77ef4fc0b433fb11d (diff) | |
download | mtk-20170518-a424aa612396a0105889664486b68ab0a3e91b2e.zip mtk-20170518-a424aa612396a0105889664486b68ab0a3e91b2e.tar.gz mtk-20170518-a424aa612396a0105889664486b68ab0a3e91b2e.tar.bz2 |
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.patch | 11 |
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 0000000..840dd40 --- /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) |