From b247d66171b4a3516381279fe3f4b94e4bceac18 Mon Sep 17 00:00:00 2001 From: Maxime Henrion Date: Mon, 6 Jan 2003 12:07:38 +0000 Subject: [PATCH] Fix warnings on 64bits architectures. Noticed by: alpha tinderbox --- sys/security/mac_lomac/mac_lomac.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/security/mac_lomac/mac_lomac.c b/sys/security/mac_lomac/mac_lomac.c index 55603af34e0..483fca1a161 100644 --- a/sys/security/mac_lomac/mac_lomac.c +++ b/sys/security/mac_lomac/mac_lomac.c @@ -1057,8 +1057,7 @@ mac_lomac_associate_vnode_extattr(struct mount *mp, struct label *fslabel, struct vnode *vp, struct label *vlabel) { struct mac_lomac temp, *source, *dest; - size_t buflen; - int error; + int buflen, error; source = SLOT(fslabel); dest = SLOT(vlabel); -- 2.45.2