summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2008-03-21 18:21:09 +0000
committerMarcus Boerger <helly@php.net>2008-03-21 18:21:09 +0000
commit3ce7194a4d5c9a28d320bfafd8868537a703f822 (patch)
tree3bb3262990a83aab96521617188c9c6706a00cb0 /main
parent51e9bd075f0c6d99060fc3a0c54e30daba1ddf6e (diff)
downloadphp-git-3ce7194a4d5c9a28d320bfafd8868537a703f822.tar.gz
- MFH Fix comment
Diffstat (limited to 'main')
-rw-r--r--main/streams/mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/mmap.c b/main/streams/mmap.c
index 6619fdc039..633ab1b706 100644
--- a/main/streams/mmap.c
+++ b/main/streams/mmap.c
@@ -31,7 +31,7 @@ PHPAPI char *_php_stream_mmap_range(php_stream *stream, size_t offset, size_t le
range.mode = mode;
range.mapped = NULL;
- /* For now, we impose an arbitrary 2MB limit to avoid
+ /* For now, we impose an arbitrary limit to avoid
* runaway swapping when large files are passed thru. */
if (length > 8 * 1024 * 1024) {
return NULL;