summaryrefslogtreecommitdiffstats
path: root/bin/getfacl
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2002-02-22 21:02:58 +0000
committermarkm <markm@FreeBSD.org>2002-02-22 21:02:58 +0000
commit02fae8d816882e45cd68528d586dbb54fdeb7f65 (patch)
treefc79238942123f97e0aa18f0439250ea91b93660 /bin/getfacl
parentd2f778cddfea0f0d9db3b4625d5629db4eed2a8b (diff)
downloadFreeBSD-src-02fae8d816882e45cd68528d586dbb54fdeb7f65.zip
FreeBSD-src-02fae8d816882e45cd68528d586dbb54fdeb7f65.tar.gz
Partially fix (well, work around) warnings inspired by lint, a
commercial lint and WARNS=4.
Diffstat (limited to 'bin/getfacl')
-rw-r--r--bin/getfacl/getfacl.c4
1 files changed, 2 insertions, 2 deletions
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);
}
OpenPOWER on IntegriCloud