Skip to content

Commit 86f71e5

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Remove spaces
2 parents 4ee72a8 + 7e5fb56 commit 86f71e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/Optimizer/zend_dump.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,15 @@ static void zend_dump_type_info(uint32_t info, zend_class_entry *ce, int is_inst
258258
fprintf(stderr, "[");
259259
if (info & MAY_BE_ARRAY_EMPTY) {
260260
if (afirst) afirst = 0; else fprintf(stderr, ", ");
261-
fprintf(stderr, "empty ");
261+
fprintf(stderr, "empty");
262262
}
263263
if (MAY_BE_PACKED(info)) {
264264
if (afirst) afirst = 0; else fprintf(stderr, ", ");
265-
fprintf(stderr, "packed ");
265+
fprintf(stderr, "packed");
266266
}
267267
if (MAY_BE_HASH(info)) {
268268
if (afirst) afirst = 0; else fprintf(stderr, ", ");
269-
fprintf(stderr, "hash ");
269+
fprintf(stderr, "hash");
270270
}
271271
fprintf(stderr, "] ");
272272
}

0 commit comments

Comments
 (0)