ms/uplink.c: fix Visual Studio 2010 warning.
This commit is contained in:
parent
2966c2ec31
commit
b429c4cbb9
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue