mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-3115 bug fix for >64k table items
X-SVN-Rev: 13465
This commit is contained in:
parent
55a2251179
commit
5b8b1b2b4a
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ genres32(const char *prog, const char *path) {
|
|||
* every 10th entry contains a string with
|
||||
* the entry index as its code point
|
||||
*/
|
||||
fprintf(out, "%s{\"\\u%04x\"}\n", key, i);
|
||||
fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
|
||||
} else {
|
||||
/* other entries contain their index as an integer */
|
||||
fprintf(out, "%s:int{%d}\n", key, i);
|
||||
|
|
Loading…
Add table
Reference in a new issue