Skip to content

Commit

Permalink
Fixes a format string error in LangTags
Browse files Browse the repository at this point in the history
  • Loading branch information
hoijui authored and afs committed Jan 23, 2025
1 parent 4c6ac6c commit 25d09ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private static List<String> splitOnDash(String x) {
sb.setLength(0);
continue;
}
error("Bad character: (0x%02X) '%c' index %d", (int)ch, str(ch), idx);
error("Bad character: (0x%02X) '%s' index %d", (int)ch, str(ch), idx);
}
String strLast = sb.toString();
if ( strLast.isEmpty() ) {
Expand Down

0 comments on commit 25d09ea

Please sign in to comment.