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:
Natanael Copa 2014-01-29 14:23:44 +00:00 committed by Stéphane Graber
parent 37515ebdf0
commit 85dce4a543

View File

@ -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;
}; };