summaryrefslogtreecommitdiff
path: root/mmap/unix/mmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'mmap/unix/mmap.c')
-rw-r--r--mmap/unix/mmap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index 147317cc6..99aae562b 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -199,15 +199,15 @@ APR_DECLARE(apr_status_t) apr_mmap_dup(apr_mmap_t **new_mmap,
return APR_SUCCESS;
}
-APR_DECLARE(apr_status_t) apr_mmap_delete(apr_mmap_t *mmap)
+APR_DECLARE(apr_status_t) apr_mmap_delete(apr_mmap_t *mm)
{
apr_status_t rv;
- if (mmap->mm == (void *)-1)
+ if (mm->mm == (void *)-1)
return APR_ENOENT;
- if ((rv = mmap_cleanup(mmap)) == APR_SUCCESS) {
- apr_pool_cleanup_kill(mmap->cntxt, mmap, mmap_cleanup);
+ if ((rv = mmap_cleanup(mm)) == APR_SUCCESS) {
+ apr_pool_cleanup_kill(mm->cntxt, mm, mmap_cleanup);
return APR_SUCCESS;
}
return rv;