ms/uplink.c: fix Visual Studio 2010 warning [from HEAD].
This commit is contained in:
parent
b680fef061
commit
2a12eff4b2
@ -40,7 +40,8 @@ void OPENSSL_Uplink (volatile void **table, int index)
|
|||||||
* should be sufficient [it prohibits compiler to reorder memory
|
* should be sufficient [it prohibits compiler to reorder memory
|
||||||
* access instructions]. */
|
* access instructions]. */
|
||||||
do {
|
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"));
|
_tcscpy (msg+len,_T("unimplemented function"));
|
||||||
|
|
||||||
if ((h=apphandle)==NULL)
|
if ((h=apphandle)==NULL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user