mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-22270 Fix hex number formatting in icuexportdata
This commit is contained in:
parent
1d507acacd
commit
ac596798e8
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ void dumpBinaryProperty(UProperty uproperty, FILE* f) {
|
|||
fputs("[[binary_property]]\n", f);
|
||||
fprintf(f, "long_name = \"%s\"\n", fullPropName);
|
||||
if (shortPropName) fprintf(f, "short_name = \"%s\"\n", shortPropName);
|
||||
fprintf(f, "uproperty_discr = %X\n", uproperty);
|
||||
fprintf(f, "uproperty_discr = 0x%X\n", uproperty);
|
||||
dumpPropertyAliases(uproperty, f);
|
||||
usrc_writeUnicodeSet(f, uset, UPRV_TARGET_SYNTAX_TOML);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue