diff options
author | Christopher Faylor <me@cgf.cx> | 2000-02-21 05:20:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-02-21 05:20:38 +0000 |
commit | 9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9 (patch) | |
tree | c7033544db3e6e96f568e08cc0b283c58cb24e94 /winsup/cygwin/security.cc | |
parent | 17869f8bf7adce5296d844c51c14e89f45fc4054 (diff) | |
download | cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.tar.gz cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.tar.bz2 cygnal-9cec3d45aa1e7c7b3aed4559aa8bef57d24612d9.zip |
Respond to a multitude of g++ warnings.
Diffstat (limited to 'winsup/cygwin/security.cc')
-rw-r--r-- | winsup/cygwin/security.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/security.cc b/winsup/cygwin/security.cc index df62f1a7d..6778fb20b 100644 --- a/winsup/cygwin/security.cc +++ b/winsup/cygwin/security.cc @@ -1782,7 +1782,7 @@ int acecmp (const void *a1, const void *a2) extern "C" int -aclsort (int nentries, int calclass, aclent_t *aclbufp) +aclsort (int nentries, int, aclent_t *aclbufp) { if (aclcheck (aclbufp, nentries, NULL)) return -1; @@ -1975,7 +1975,7 @@ permfromstr (char *perm) extern "C" aclent_t * -aclfromtext (char *acltextp, int *aclcnt) +aclfromtext (char *acltextp, int *) { if (!acltextp) { |