diff options
author | markm <markm@FreeBSD.org> | 2002-02-22 21:02:58 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-02-22 21:02:58 +0000 |
commit | 02fae8d816882e45cd68528d586dbb54fdeb7f65 (patch) | |
tree | fc79238942123f97e0aa18f0439250ea91b93660 /bin | |
parent | d2f778cddfea0f0d9db3b4625d5629db4eed2a8b (diff) | |
download | FreeBSD-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')
-rw-r--r-- | bin/getfacl/getfacl.c | 4 |
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); } |