summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/string.cpp b/src/util/string.cpp
index e847f3a8e..36a9481c5 100644
--- a/src/util/string.cpp
+++ b/src/util/string.cpp
@@ -116,7 +116,7 @@ std::string wide_to_utf8(const std::wstring &input)
if (!convert("UTF-8", "WCHAR_T", outbuf, outbuf_size, inbuf, inbuf_size)) {
infostream << "Couldn't convert wstring 0x" << hex_encode(inbuf, inbuf_size)
- << " into wstring" << std::endl;
+ << " into UTF-8 string" << std::endl;
delete[] inbuf;
delete[] outbuf;
return "<invalid wstring>";