summaryrefslogtreecommitdiff
path: root/updater/utils.cpp
diff options
context:
space:
mode:
author(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2010-05-16 20:18:05 +0000
committer(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2010-05-16 20:18:05 +0000
commit8f0b7ae8e77984a30732170d298c3f24ac185a76 (patch)
tree680be542397ab39fed91292a0ddd65380dccd652 /updater/utils.cpp
parentdc0ecd8e51b27c6ea8e3d8ac3821bc9b875bb88b (diff)
Fixed bogus error message
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@516 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/utils.cpp')
-rw-r--r--updater/utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/utils.cpp b/updater/utils.cpp
index d22aa53..8448217 100644
--- a/updater/utils.cpp
+++ b/updater/utils.cpp
@@ -207,7 +207,7 @@ void NLogF(const char *fmt, ...)
#ifdef _UNICODE
void NLog(wchar_t *msg)
{
- char* a = mir_u2a(msg);
+ char* a = mir_utf8encodeW(msg);
CallService(MS_NETLIB_LOG, (WPARAM)hNetlibUser, (LPARAM)a);
mir_free(a);
}