debuglevels: use vsnprintf instead of _vsnprintf, otherwise it won't build on unxlngi6.pro+debug
This commit is contained in:
parent
1a0a797063
commit
908e4f7148
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ DebugTraceScope::DebugTraceScope (const sal_Char* sFormat, ...)
|
|||
va_start(args, sFormat);
|
||||
|
||||
msMessage[mnBufferSize-1] = 0;
|
||||
_vsnprintf(msMessage, mnBufferSize-1, sFormat, args);
|
||||
vsnprintf(msMessage, mnBufferSize-1, sFormat, args);
|
||||
TRACE_BEGIN("[ %s", msMessage);
|
||||
va_end(args);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue