summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2011-07-13 14:55:11 +0000
committerAndy Polyakov <appro@openssl.org>2011-07-13 14:55:11 +0000
commit2a12eff4b2711a5efaa927ca1c9fd188af8fa944 (patch)
tree251c6d92ebe6bdf9b0abfd36af70157e2d3c506e
parentb680fef0619a75cc7d490778f940e12a6b051bad (diff)
downloadopenssl-new-2a12eff4b2711a5efaa927ca1c9fd188af8fa944.tar.gz
ms/uplink.c: fix Visual Studio 2010 warning [from HEAD].
-rw-r--r--ms/uplink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ms/uplink.c b/ms/uplink.c
index 7b7da08d47..6d59cb1f87 100644
--- a/ms/uplink.c
+++ b/ms/uplink.c
@@ -40,7 +40,8 @@ void OPENSSL_Uplink (volatile void **table, int index)
* should be sufficient [it prohibits compiler to reorder memory
* access instructions]. */
do {
- len = _stprintf (msg,_T("OPENSSL_Uplink(%p,%02X): "),table,index);
+ len = _sntprintf (msg,sizeof(msg)/sizeof(TCHAR),
+ _T("OPENSSL_Uplink(%p,%02X): "),table,index);
_tcscpy (msg+len,_T("unimplemented function"));
if ((h=apphandle)==NULL)