summaryrefslogtreecommitdiff
path: root/Ivy/IvyStdAfx.cpp
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:02:24 +0000
committerfcolin2007-02-01 13:02:24 +0000
commita8d96166e058d988bba3fd12d66d73ff08c98f14 (patch)
tree3aa31f8d0a2766881dd45afb2eaa0c885a826840 /Ivy/IvyStdAfx.cpp
parent3cbb903ca0a1c671838bec02f8fff48ceff60e5d (diff)
downloadivy-cplusplus-a8d96166e058d988bba3fd12d66d73ff08c98f14.zip
ivy-cplusplus-a8d96166e058d988bba3fd12d66d73ff08c98f14.tar.gz
ivy-cplusplus-a8d96166e058d988bba3fd12d66d73ff08c98f14.tar.bz2
ivy-cplusplus-a8d96166e058d988bba3fd12d66d73ff08c98f14.tar.xz
Utilisateur : Fcolin Date : 1/06/05 Heure : 16:45 Archivé dans $/Bus/Ivy Commentaire: (vss 6)
Diffstat (limited to 'Ivy/IvyStdAfx.cpp')
-rw-r--r--Ivy/IvyStdAfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ivy/IvyStdAfx.cpp b/Ivy/IvyStdAfx.cpp
index 41fc8a6..0d1d4b4 100644
--- a/Ivy/IvyStdAfx.cpp
+++ b/Ivy/IvyStdAfx.cpp
@@ -2,7 +2,7 @@
// libIvy.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
-#include "stdafx.h"
+#include "IvyStdAfx.h"
#include <windows.h>
@@ -15,7 +15,7 @@ void DebugTrace ( const char *fmt , ... )
va_list args;
va_start( args, fmt );
- vsprintf( buffer, fmt, args );
+ _vsnprintf( buffer, sizeof(buffer), fmt, args );
va_end( args );
#ifdef UNDER_CE
MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, buffer, -1, CEBuffer, 4096 );