diff options
author | Andi Gutmans <andi@php.net> | 2005-02-24 03:04:57 (GMT) |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2005-02-24 03:04:57 (GMT) |
commit | f4cdd366e173121db3087922a4fbb19c2f1a9d35 (patch) | |
tree | 9deda4cf2d91ee0a16ce46c67d2bf50665bd75b7 /main | |
parent | 8140f095c68576561361c66c89c2d34a186ef18e (diff) | |
download | php-f4cdd366e173121db3087922a4fbb19c2f1a9d35.tar.gz |
- Fix comment
Diffstat (limited to 'main')
-rw-r--r-- | main/streams/mmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/mmap.c b/main/streams/mmap.c index aa4320d..1cfa9b8 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 1MB limit to avoid + /* For now, we impose an arbitrary 2MB limit to avoid * runaway swapping when large files are passed thru. */ if (length > 2 * 1024 * 1024) { return NULL; |