Skip to content

Commit cabdad2

Browse files
Strings: Fix format of the hex constant when printing codepoints for Unicode escape sequences
1 parent 9aaefaf commit cabdad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public static String escapeUnicodeForSmtlib(String input) {
8282
} else if (0x20 <= codePoint && codePoint <= 0x7E) {
8383
sb.appendCodePoint(codePoint); // normal printable chars
8484
} else {
85-
sb.append("\\u{").append(String.format("%05X", codePoint)).append("}");
85+
sb.append("\\u{").append(String.format("%x", codePoint)).append("}");
8686
}
8787
}
8888
return sb.toString();

0 commit comments

Comments
 (0)