Skip to content

Commit 4162c20

Browse files
committed
Fix compile without ZEND_MM_STORAGE
1 parent 444cc78 commit 4162c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ ZEND_API zend_mm_storage *zend_mm_get_storage(zend_mm_heap *heap)
30433043
#if ZEND_MM_STORAGE
30443044
return heap->storage;
30453045
#else
3046-
return NULL
3046+
return NULL;
30473047
#endif
30483048
}
30493049

0 commit comments

Comments
 (0)