Commit 85dce4a5 by Natanael Copa Committed by Stéphane Graber

Use the standard 'unsigned int' instead or non-standard 'uint'

This fixes compile error when build with musl libc: conf.h:92:2: error: unknown type name 'uint' uint fmask; ^ Signed-off-by: 's avatarNatanael Copa <ncopa@alpinelinux.org> Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent 37515ebd
...@@ -88,8 +88,8 @@ struct ifla_veth { ...@@ -88,8 +88,8 @@ struct ifla_veth {
}; };
struct ifla_vlan { struct ifla_vlan {
uint flags; unsigned int flags;
uint fmask; unsigned int fmask;
unsigned short vid; unsigned short vid;
unsigned short pad; unsigned short pad;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment