mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Remove spaces
This commit is contained in:
@@ -258,15 +258,15 @@ static void zend_dump_type_info(uint32_t info, zend_class_entry *ce, int is_inst
|
||||
fprintf(stderr, "[");
|
||||
if (info & MAY_BE_ARRAY_EMPTY) {
|
||||
if (afirst) afirst = 0; else fprintf(stderr, ", ");
|
||||
fprintf(stderr, "empty ");
|
||||
fprintf(stderr, "empty");
|
||||
}
|
||||
if (MAY_BE_PACKED(info)) {
|
||||
if (afirst) afirst = 0; else fprintf(stderr, ", ");
|
||||
fprintf(stderr, "packed ");
|
||||
fprintf(stderr, "packed");
|
||||
}
|
||||
if (MAY_BE_HASH(info)) {
|
||||
if (afirst) afirst = 0; else fprintf(stderr, ", ");
|
||||
fprintf(stderr, "hash ");
|
||||
fprintf(stderr, "hash");
|
||||
}
|
||||
fprintf(stderr, "] ");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user