diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2014-10-28 14:00:54 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2014-10-28 14:00:54 +0100 |
commit | b695337850c5afe7524e9d09a1b990fd5c5b8989 (patch) | |
tree | aec62eff8b42a90b0ff3c1d200fecde88ca7c7c3 | |
parent | 97eb6cb062b6b3f04d1f328d1e8ee622938ff683 (diff) | |
download | aports-b695337850c5afe7524e9d09a1b990fd5c5b8989.tar.bz2 aports-b695337850c5afe7524e9d09a1b990fd5c5b8989.tar.xz |
testing/ifplugd: add missing patch
-rw-r--r-- | testing/ifplugd/musl-type.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/ifplugd/musl-type.patch b/testing/ifplugd/musl-type.patch new file mode 100644 index 0000000000..fa8a232cec --- /dev/null +++ b/testing/ifplugd/musl-type.patch @@ -0,0 +1,15 @@ +--- a/src/ethtool-local.h.orig ++++ b/src/ethtool-local.h +@@ -22,9 +22,9 @@ + */ + + typedef unsigned long long u64; +-typedef __uint32_t u32; +-typedef __uint16_t u16; +-typedef __uint8_t u8; ++typedef uint32_t u32; ++typedef uint16_t u16; ++typedef uint8_t u8; + + #include "ethtool-kernel.h" + |