diff options
Diffstat (limited to 'plugins/AVS/src/main.cpp')
-rw-r--r-- | plugins/AVS/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 7a54b884ef..6d99c5243e 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -129,7 +129,7 @@ int _DebugTrace(const char *fmt, ...) mir_snprintf(debug, SIZEOF(debug) - 10, " ***** AVS [%08d] [ID:%04x]: ", GetTickCount(), GetCurrentThreadId());
OutputDebugStringA(debug);
- _vsnprintf(debug, ibsize, fmt, va);
+ mir_vsnprintf(debug, ibsize, fmt, va);
OutputDebugStringA(debug);
OutputDebugStringA(" ***** \n");
|