From: Natanael Copa Date: Wed, 29 Jan 2014 14:23:44 +0000 (+0000) Subject: Use the standard 'unsigned int' instead or non-standard 'uint' X-Git-Tag: lxc-1.0.0.beta4~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85dce4a5434281d50453a58b6be4351d4dfffbf6;p=thirdparty%2Flxc.git 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 Acked-by: Serge E. Hallyn --- diff --git a/src/lxc/conf.h b/src/lxc/conf.h index a0ce3f7b5..cd4b115bd 100644 --- a/src/lxc/conf.h +++ b/src/lxc/conf.h @@ -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; };