Skip to content

Commit ba25c2c

Browse files
committed
misc(c): apply clang-format
1 parent ee7d418 commit ba25c2c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

frankenphp.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -557,13 +557,13 @@ PHP_FUNCTION(frankenphp_log) {
557557
zval *context = NULL;
558558

559559
ZEND_PARSE_PARAMETERS_START(2, 3)
560-
Z_PARAM_STRING(message, message_len)
561-
Z_PARAM_LONG(level)
562-
Z_PARAM_OPTIONAL
563-
Z_PARAM_ARRAY(context)
560+
Z_PARAM_STRING(message, message_len)
561+
Z_PARAM_LONG(level)
562+
Z_PARAM_OPTIONAL
563+
Z_PARAM_ARRAY(context)
564564
ZEND_PARSE_PARAMETERS_END();
565565

566-
char * ret = NULL;
566+
char *ret = NULL;
567567
ret = go_log_attrs(thread_index, message, message_len, (int)level, context);
568568
if (ret != NULL) {
569569
zend_throw_exception(spl_ce_RuntimeException, ret, 0);

0 commit comments

Comments
 (0)