summaryrefslogtreecommitdiff
path: root/mmap/unix/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'mmap/unix/common.c')
-rw-r--r--mmap/unix/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mmap/unix/common.c b/mmap/unix/common.c
index 1172f3c89..dcd71c691 100644
--- a/mmap/unix/common.c
+++ b/mmap/unix/common.c
@@ -17,7 +17,7 @@
/* common .c
* This file has any function that is truly common and platform
* neutral. Or at least that's the theory.
- *
+ *
* The header files are a problem so there are a few #ifdef's to take
* care of those.
*
@@ -35,7 +35,7 @@ APR_DECLARE(apr_status_t) apr_mmap_offset(void **addr, apr_mmap_t *mmap,
{
if (offset < 0 || (apr_size_t)offset > mmap->size)
return APR_EINVAL;
-
+
(*addr) = (char *) mmap->mm + offset;
return APR_SUCCESS;
}