Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 7f7b657

Browse files
committed
[[ ICUData ]] Fix bug in encode_data script
1 parent 5f89968 commit 7f7b657

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

util/encode_data.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
my $input = join('', @lines);
1616

1717
# Split into bytes
18-
my @bytes = unpack('C*', $lines);
18+
my @bytes = unpack('C*', $input);
1919

2020
# Convert to a list of uint8_t values appropriate for an array in C
2121
my $cArray = "";

0 commit comments

Comments
 (0)