Skip to content

Commit 32edc70

Browse files
author
Derick Rethans
committed
CS fixes.
1 parent dc27324 commit 32edc70

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Zend/zend_alloc.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1882,7 +1882,7 @@ static void *_zend_mm_alloc_int(zend_mm_heap *heap, size_t size ZEND_FILE_LINE_D
18821882
size_t segment_size;
18831883
zend_mm_segment *segment;
18841884
int keep_rest = 0;
1885-
#ifdef ZEND_SIGNALS
1885+
#ifdef ZEND_SIGNALS
18861886
TSRMLS_FETCH();
18871887
#endif
18881888

@@ -2058,7 +2058,7 @@ static void _zend_mm_free_int(zend_mm_heap *heap, void *p ZEND_FILE_LINE_DC ZEND
20582058
zend_mm_block *mm_block;
20592059
zend_mm_block *next_block;
20602060
size_t size;
2061-
#ifdef ZEND_SIGNALS
2061+
#ifdef ZEND_SIGNALS
20622062
TSRMLS_FETCH();
20632063
#endif
20642064
if (!ZEND_MM_VALID_PTR(p)) {
@@ -2548,7 +2548,7 @@ ZEND_API void *_safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset
25482548
ZEND_API void *_ecalloc(size_t nmemb, size_t size ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
25492549
{
25502550
void *p;
2551-
#ifdef ZEND_SIGNALS
2551+
#ifdef ZEND_SIGNALS
25522552
TSRMLS_FETCH();
25532553
#endif
25542554
HANDLE_BLOCK_INTERRUPTIONS();
@@ -2567,7 +2567,7 @@ ZEND_API char *_estrdup(const char *s ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
25672567
{
25682568
int length;
25692569
char *p;
2570-
#ifdef ZEND_SIGNALS
2570+
#ifdef ZEND_SIGNALS
25712571
TSRMLS_FETCH();
25722572
#endif
25732573

@@ -2587,7 +2587,7 @@ ZEND_API char *_estrdup(const char *s ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
25872587
ZEND_API char *_estrndup(const char *s, uint length ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
25882588
{
25892589
char *p;
2590-
#ifdef ZEND_SIGNALS
2590+
#ifdef ZEND_SIGNALS
25912591
TSRMLS_FETCH();
25922592
#endif
25932593

@@ -2608,7 +2608,7 @@ ZEND_API char *_estrndup(const char *s, uint length ZEND_FILE_LINE_DC ZEND_FILE_
26082608
ZEND_API char *zend_strndup(const char *s, uint length)
26092609
{
26102610
char *p;
2611-
#ifdef ZEND_SIGNALS
2611+
#ifdef ZEND_SIGNALS
26122612
TSRMLS_FETCH();
26132613
#endif
26142614

0 commit comments

Comments
 (0)