mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[NFS] Improve NFS41DbgPrint() a _little_ bit
This commit is contained in:
@@ -47,13 +47,19 @@ ULONG _cdecl NFS41DbgPrint( __in LPTSTR Format, ... )
|
||||
va_list marker;
|
||||
va_start( marker, Format );
|
||||
{
|
||||
|
||||
#ifndef __REACTOS__
|
||||
//StringCchVPrintfW( szbuffer, 127, Format, marker );
|
||||
StringCchVPrintfW( szbuffer, 256, Format, marker );
|
||||
szbuffer[255] = (TCHAR)0;
|
||||
#else
|
||||
StringCchVPrintf( szbuffer, 256, Format, marker );
|
||||
#endif
|
||||
OutputDebugString( TRACE_TAG );
|
||||
OutputDebugString( szbuffer );
|
||||
}
|
||||
#ifdef __REACTOS__
|
||||
va_end(marker);
|
||||
#endif
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user