summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-05-17 11:22:49 +0000
committerZeev Suraski <zeev@php.net>2001-05-17 11:22:49 +0000
commit41fbc95fe18e5391c7699cb7c84eb4b46c41d6fd (patch)
tree7fc315b98b1db05f736bdd514c03051a8dd07019 /Zend
parent51303fc051bd9d477e476ed322c34a43cf8e9a39 (diff)
downloadphp-git-41fbc95fe18e5391c7699cb7c84eb4b46c41d6fd.tar.gz
Fix build
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c
index 488a2c0ec4..9fa094d217 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -184,7 +184,7 @@ ZEND_API void *_emalloc(size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
#endif
#if MEMORY_LIMIT
CHECK_MEMORY_LIMIT(size, SIZE);
- if (AG(allocated_memory) > AG(allocated_memory_peak) {
+ if (AG(allocated_memory) > AG(allocated_memory_peak)) {
AG(allocated_memory_peak) = AG(allocated_memory);
}
#endif