From: Daniel Hokka Zakrisson Date: Fri, 29 Dec 2006 20:33:26 +0000 (+0000) Subject: Use the correct type for the configuration bitfield. X-Git-Tag: release-0.30.214~168 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc5ad98291c08205769be09fb188c742ba5135b3;p=util-vserver.git Use the correct type for the configuration bitfield. git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@2437 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/lib/vserver-internal.h b/lib/vserver-internal.h index 055dd07..c8bf60f 100644 --- a/lib/vserver-internal.h +++ b/lib/vserver-internal.h @@ -50,7 +50,7 @@ inline static ALWAYSINLINE void vc_noop0() {} # define CALL_VC(...) \ do { \ int ver = utilvserver_checkCompatVersion(); \ - int UNUSED conf = utilvserver_checkCompatConfig(); \ + uint_least32_t conf = utilvserver_checkCompatConfig(); \ if (ver==-1) return -1; \ VC_SUFFIX, __VA_ARGS__, VC_PREFIX; \ errno = ENOSYS; \