diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-12 10:29:01 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-12 10:29:01 (GMT) |
commit | 348739729adc3e690c33831fd8acc535af539dd8 (patch) | |
tree | 05ba119e84dea62fd02d074c8e3e0e8650482c82 /win | |
parent | b028eea89ffe9a3c009dff8b8f7dde6421d2743b (diff) | |
parent | c90aa17e6ef729c6cab8a8f6a1ca988c9c3d4b62 (diff) | |
download | tcl-348739729adc3e690c33831fd8acc535af539dd8.zip tcl-348739729adc3e690c33831fd8acc535af539dd8.tar.gz tcl-348739729adc3e690c33831fd8acc535af539dd8.tar.bz2 |
Silence various warnings when doing a 64-bit build with MSVC: Those warnings can only _really_ be fixed in "novem" (so, don't silence them there).
Use vsnprintf (more portable) in stead of _vsnprintf, except on MSVC
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinFile.c | 2 | ||||
-rw-r--r-- | win/tclWinPort.h | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 8e517d1..1d9f93a 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -799,7 +799,7 @@ tclWinDebugPanic( WCHAR msgString[TCL_MAX_WARN_LEN]; va_start(argList, format); - _vsnprintf(buf, sizeof(buf), format, argList); + vsnprintf(buf, sizeof(buf), format, argList); msgString[TCL_MAX_WARN_LEN-1] = L'\0'; MultiByteToWideChar(CP_UTF8, 0, buf, -1, msgString, TCL_MAX_WARN_LEN); diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 457c838..ca35f38 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -468,8 +468,13 @@ typedef DWORD_PTR * PDWORD_PTR; * including the *printf family and others. Tell it to shut up. * (_MSC_VER is 1200 for VC6, 1300 or 1310 for vc7.net, 1400 for 8.0) */ -#if _MSC_VER >= 1400 -#pragma warning(disable:4996) +#if defined(_MSC_VER) +# if _MSC_VER >= 1400 +# pragma warning(disable:4244) +# pragma warning(disable:4267) +# pragma warning(disable:4996) +# endif +# define vsnprintf _vsnprintf #endif |