From 85dce4a5434281d50453a58b6be4351d4dfffbf6 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 29 Jan 2014 14:23:44 +0000 Subject: [PATCH] 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 --- src/lxc/conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; -- 2.47.2