diff options
Diffstat (limited to 'plugins/ShellExt/src/utils.cpp')
-rw-r--r-- | plugins/ShellExt/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ShellExt/src/utils.cpp b/plugins/ShellExt/src/utils.cpp index 22e033fb42..834850073d 100644 --- a/plugins/ShellExt/src/utils.cpp +++ b/plugins/ShellExt/src/utils.cpp @@ -5,7 +5,7 @@ extern TCHAR tszLogPath[]; void logA(const char *format, ...)
{
- FILE *out = _tfopen(tszLogPath, _T("a+"));
+ FILE *out = _tfopen(tszLogPath, L"a+");
if (out) {
va_list args;
va_start(args, format);
|