From fab912df88a4abeb6b7d0ee5a83b299d5d2ceb1d Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Fri, 22 Feb 2002 21:02:58 +0000 Subject: [PATCH] Partially fix (well, work around) warnings inspired by lint, a commercial lint and WARNS=4. --- bin/getfacl/getfacl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/getfacl/getfacl.c b/bin/getfacl/getfacl.c index eb3fa86bc443..4c9550c447c0 100644 --- a/bin/getfacl/getfacl.c +++ b/bin/getfacl/getfacl.c @@ -188,8 +188,8 @@ print_acl(char *path, acl_type_t type) printf("%s", acl_text); - acl_free(acl); - acl_free(acl_text); + (void)acl_free(acl); + (void)acl_free(acl_text); return(0); }