Skip to content

Commit 87f5b10

Browse files
committed
indentation
1 parent afafa6c commit 87f5b10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/zend_execute_API.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,18 +1345,18 @@ ZEND_API ZEND_NORETURN void ZEND_FASTCALL zend_timeout(void) /* {{{ */
13451345
/* }}} */
13461346

13471347
#ifndef ZEND_WIN32
1348-
#if defined(ZTS) && defined(HAVE_TIMER_CREATE)
1348+
# if defined(ZTS) && defined(HAVE_TIMER_CREATE)
13491349
static void zend_timeout_handler(int dummy, siginfo_t *si, void *uc) /* {{{ */
13501350
{
13511351
if (si->si_value.sival_ptr != &EG(timer)) {
13521352
fprintf(stderr, "ignoring timeout signal SIGIO received on thread %d\n", syscall(SYS_gettid));
13531353

13541354
return;
13551355
}
1356-
#else
1356+
# else
13571357
static void zend_timeout_handler(int dummy) /* {{{ */
13581358
{
1359-
#endif
1359+
# endif
13601360
#ifndef ZTS
13611361
if (EG(timed_out)) {
13621362
/* Die on hard timeout */

0 commit comments

Comments
 (0)