aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbutl/utf8.ixx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/utf8.ixx b/libbutl/utf8.ixx
index 3d2e092..10624f8 100644
--- a/libbutl/utf8.ixx
+++ b/libbutl/utf8.ixx
@@ -116,7 +116,7 @@ namespace butl
{
if (b < 0xFE)
{
- *what = b < 0xFC ? "5" : "6";
+ *what = b < 0xFC ? '5' : '6';
*what += "-byte length UTF-8 sequence";
}
else