Skip to content

Commit

Permalink
ICU-22270 Fix hex number formatting in icuexportdata
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Mar 23, 2023
1 parent 1d507ac commit ac59679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icu4c/source/tools/icuexportdata/icuexportdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit ac59679

Please sign in to comment.