mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-27 08:12:20 +00:00
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: Natanael Copa <ncopa@alpinelinux.org> Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
This commit is contained in:
parent
37515ebdf0
commit
85dce4a543
@ -88,8 +88,8 @@ struct ifla_veth {
|
||||
};
|
||||
|
||||
struct ifla_vlan {
|
||||
uint flags;
|
||||
uint fmask;
|
||||
unsigned int flags;
|
||||
unsigned int fmask;
|
||||
unsigned short vid;
|
||||
unsigned short pad;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user