summaryrefslogtreecommitdiff
path: root/Zend/zend_static_allocator.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-06-23 00:11:54 +0000
committerAndi Gutmans <andi@php.net>2000-06-23 00:11:54 +0000
commit684dca9acaa700c4b121113734309f191ba89bf2 (patch)
treec922e3edb9bfbb87af9e25b73dbaa228a2bc3dc9 /Zend/zend_static_allocator.c
parentfd7dc3024c9a55a99b05c9d7ba2c6e6f2ec3eb57 (diff)
downloadphp-git-684dca9acaa700c4b121113734309f191ba89bf2.tar.gz
- Not returning a value anymore
Diffstat (limited to 'Zend/zend_static_allocator.c')
-rw-r--r--Zend/zend_static_allocator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_static_allocator.c b/Zend/zend_static_allocator.c
index d5fd8cff02..4f0a30591f 100644
--- a/Zend/zend_static_allocator.c
+++ b/Zend/zend_static_allocator.c
@@ -42,7 +42,7 @@ inline static void block_destroy(Block *block)
efree(block->bp);
}
-int static_allocator_init(StaticAllocator *sa)
+void static_allocator_init(StaticAllocator *sa)
{
sa->Blocks = (Block *) emalloc(sizeof(Block));
block_init(sa->Blocks, ALLOCATOR_BLOCK_SIZE);