diff options
Diffstat (limited to 'Zend/zend_alloc.c')
-rw-r--r-- | Zend/zend_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index d54f00608b..917f4949a3 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -357,7 +357,7 @@ ZEND_API void shutdown_memory_manager(int silent, int clean_cache) /* flush old leak */ if (leak_count>0) { if (!silent && leak_count>1) { - zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) leak_count-1); + zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) (leak_count-1)); } leak_count=0; total_bytes=0; @@ -382,7 +382,7 @@ ZEND_API void shutdown_memory_manager(int silent, int clean_cache) } #if ZEND_DEBUG if (!silent && leak_count>1) { - zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) leak_count-1); + zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *) (leak_count-1)); } #endif } |