Skip to content

Commit ff560a7

Browse files
committed
feature.h: use the correct format for U32 for cop_feature_bits
1 parent 8ced719 commit ff560a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

feature.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

regen/feature.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ sub longest {
585585

586586
my $dump_bits = "STMT_START { \\\n " .
587587
join(qq( \\\n PerlIO_putc(file, ','); \\\n ),
588-
map { qq(PerlIO_printf(file, "0x%08x", cop->cop_features.bits[$_]);) }
588+
map { qq(PerlIO_printf(file, "0x%" U32xf, cop->cop_features.bits[$_]);) }
589589
0 .. $cop_feature_size-1) .
590590
" \\\n } STMT_END";
591591

0 commit comments

Comments
 (0)