Skip to content

Commit 0564eaf

Browse files
committed
clang fmt
1 parent 0d87765 commit 0564eaf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frankenphp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ PHP_FUNCTION(frankenphp_opcache_reset);
9797
* table. Uses handler comparison instead of orig_opcache_reset check so that
9898
* a fresh function table after PHP module restart is always re-overridden. */
9999
static void frankenphp_override_opcache_reset(void) {
100-
zend_function *func = zend_hash_str_find_ptr(CG(function_table), "opcache_reset",
101-
sizeof("opcache_reset") - 1);
100+
zend_function *func = zend_hash_str_find_ptr(
101+
CG(function_table), "opcache_reset", sizeof("opcache_reset") - 1);
102102
if (func != NULL && func->type == ZEND_INTERNAL_FUNCTION &&
103103
((zend_internal_function *)func)->handler !=
104104
ZEND_FN(frankenphp_opcache_reset)) {

0 commit comments

Comments
 (0)