diff options
Diffstat (limited to 'plugins/MirandaG15/src/LCDFramework/debug.cpp')
-rw-r--r-- | plugins/MirandaG15/src/LCDFramework/debug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/debug.cpp b/plugins/MirandaG15/src/LCDFramework/debug.cpp index abca919bfe..1eb18013c7 100644 --- a/plugins/MirandaG15/src/LCDFramework/debug.cpp +++ b/plugins/MirandaG15/src/LCDFramework/debug.cpp @@ -25,9 +25,9 @@ }
#endif
-void _trace(TCHAR *fmt, ...)
+void _trace(wchar_t *fmt, ...)
{
- TCHAR out[1024];
+ wchar_t out[1024];
va_list body;
va_start(body, fmt);
#ifdef _UNICODE
|