ICU-22270 Fix hex number formatting in icuexportdata

This commit is contained in:
Elango Cheran 2023-03-22 15:07:48 -07:00
parent 1d507acacd
commit ac596798e8

View file

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