Skip to content

Commit 98aadc4

Browse files
committed
clang-format
1 parent 032a742 commit 98aadc4

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

frankenphp.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,8 @@ PHP_MINFO_FUNCTION(frankenphp) {
11091109
php_info_print_table_row(2, "frankenphp", TOSTRING(FRANKENPHP_VERSION));
11101110
if (frankenphp_phpinfo_entries) {
11111111
for (int i = 0; frankenphp_phpinfo_entries[i] != NULL; i += 2) {
1112-
php_info_print_table_row(2, frankenphp_phpinfo_entries[i], frankenphp_phpinfo_entries[i + 1]);
1112+
php_info_print_table_row(2, frankenphp_phpinfo_entries[i],
1113+
frankenphp_phpinfo_entries[i + 1]);
11131114
}
11141115
}
11151116
php_info_print_table_end();

frankenphp.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ typedef struct {
7474
#define STRINGIFY(x) #x
7575
#define TOSTRING(x) STRINGIFY(x)
7676

77-
/* phpinfo entries from Go - null-terminated array of key, value, key, value, ... */
77+
/* phpinfo entries from Go - null-terminated array of key, value, key, value,
78+
* ... */
7879
extern const char **frankenphp_phpinfo_entries;
7980

8081
typedef struct go_string {

0 commit comments

Comments
 (0)