Skip to content

Commit f478681

Browse files
authored
use tabs
1 parent bdd8031 commit f478681

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ext/json/json_encoder.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ static inline void php_json_pretty_print_char(smart_str *buf, int options, char
5353

5454
static inline void php_json_pretty_print_indent(smart_str *buf, int options, const php_json_encoder *encoder) /* {{{ */
5555
{
56-
if (options & PHP_JSON_PRETTY_PRINT) {
57-
smart_str_alloc(buf, encoder->depth * 4, 0);
58-
for (int i = 0; i < encoder->depth; ++i) {
59-
smart_str_appendl(buf, " ", 4);
60-
}
61-
}
56+
if (options & PHP_JSON_PRETTY_PRINT) {
57+
smart_str_alloc(buf, encoder->depth * 4, 0);
58+
for (int i = 0; i < encoder->depth; ++i) {
59+
smart_str_appendl(buf, " ", 4);
60+
}
61+
}
6262
}
6363
/* }}} */
6464

0 commit comments

Comments
 (0)