blob: 4bd40606b09b7218142d21ba7f1562c47b5d6c16 [file] [log] [blame]
Brad Bishop6a62e0e2019-10-21 08:11:42 -04001From 3f2fc79385398f213a9bd3c99616d749d699f2bb Mon Sep 17 00:00:00 2001
2From: Fabio Berton <fabio.berton@ossystems.com.br>
3Date: Thu, 14 Mar 2019 19:26:14 -0300
4Subject: [PATCH] Fix build with musl
5Organization: O.S. Systems Software LTDA.
6
7Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
8---
9 src/ethtool-local.h | 6 +++---
10 1 file changed, 3 insertions(+), 3 deletions(-)
11
12diff --git a/src/ethtool-local.h b/src/ethtool-local.h
13index 200476b..0edc7a9 100644
14--- a/src/ethtool-local.h
15+++ b/src/ethtool-local.h
16@@ -22,9 +22,9 @@
17 */
18
19 typedef unsigned long long u64;
20-typedef __uint32_t u32;
21-typedef __uint16_t u16;
22-typedef __uint8_t u8;
23+typedef uint32_t u32;
24+typedef uint16_t u16;
25+typedef uint8_t u8;
26
27 #include "ethtool-kernel.h"
28
29--
302.20.1
31