ICU-3115 bug fix for >64k table items

X-SVN-Rev: 13465
This commit is contained in:
Markus Scherer 2003-10-18 00:01:19 +00:00
parent 55a2251179
commit 5b8b1b2b4a

View file

@ -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);