From 02fae8d816882e45cd68528d586dbb54fdeb7f65 Mon Sep 17 00:00:00 2001 From: markm Date: Fri, 22 Feb 2002 21:02:58 +0000 Subject: 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(-) (limited to 'bin/getfacl') diff --git a/bin/getfacl/getfacl.c b/bin/getfacl/getfacl.c index eb3fa86..4c9550c 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); } -- cgit v1.1