mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-27 14:30:32 +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 {
|
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;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user