Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/openvr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'samples/driver_sample/driverlog.cpp')
-rw-r--r--samples/driver_sample/driverlog.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/samples/driver_sample/driverlog.cpp b/samples/driver_sample/driverlog.cpp
index a635aac..08a1510 100644
--- a/samples/driver_sample/driverlog.cpp
+++ b/samples/driver_sample/driverlog.cpp
@@ -7,6 +7,9 @@
static vr::IVRDriverLog * s_pLogFile = NULL;
+#if !defined( WIN32)
+#define vsnprintf_s vsnprintf
+#endif
bool InitDriverLog( vr::IVRDriverLog *pDriverLog )
{
@@ -24,11 +27,7 @@ void CleanupDriverLog()
static void DriverLogVarArgs( const char *pMsgFormat, va_list args )
{
char buf[1024];
-#if defined( WIN32 )
- vsprintf_s( buf, pMsgFormat, args );
-#else
- vsnprintf( buf, sizeof(buf), pMsgFormat, args );
-#endif
+ vsnprintf_s( buf, sizeof(buf), pMsgFormat, args );
if( s_pLogFile )
s_pLogFile->Log( buf );