Skip to content

Commit 40936ff

Browse files
committed
Cs fixes
1 parent 1875711 commit 40936ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_alloc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1522,7 +1522,7 @@ static zend_always_inline zend_mm_free_slot *zend_mm_get_next_free_slot(zend_mm_
15221522
ZEND_MM_POISON(slot, sizeof(zend_mm_free_slot*));
15231523
ZEND_MM_POISON(&ZEND_MM_FREE_SLOT_PTR_SHADOW(slot, bin_num), sizeof(zend_mm_free_slot*));
15241524

1525-
return (zend_mm_free_slot*)next;
1525+
return next;
15261526
}
15271527

15281528
#else /* ZEND_MM_HEAP_PROTECTION */
@@ -1540,7 +1540,7 @@ static zend_always_inline zend_mm_free_slot *zend_mm_get_next_free_slot(zend_mm_
15401540

15411541
ZEND_MM_POISON(slot, sizeof(zend_mm_free_slot*));
15421542

1543-
return (zend_mm_free_slot*)next;
1543+
return next;
15441544
}
15451545
#endif /* ZEND_MM_HEAP_PROTECTION */
15461546

0 commit comments

Comments
 (0)