From cc5ad98291c08205769be09fb188c742ba5135b3 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Fri, 29 Dec 2006 20:33:26 +0000 Subject: [PATCH] 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 --- lib/vserver-internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; \ -- 1.8.1.5