aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-08-03 19:56:36 +0000
committerAndy Polyakov <appro@openssl.org>2005-08-03 19:56:36 +0000
commit19bd66fe747e9768a684e26f24bae4445353ee6c (patch)
tree915972b04847f81885f16009df7dac34728b4f9c /crypto/dso
parent45771abbd60007dc8c192b1e54b7e4dcdbcd60b9 (diff)
downloadopenssl-19bd66fe747e9768a684e26f24bae4445353ee6c.tar.gz
WCE update, mostly typos.
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dso/dso_win32.c b/crypto/dso/dso_win32.c
index 9c94123105..d268c3e18d 100644
--- a/crypto/dso/dso_win32.c
+++ b/crypto/dso/dso_win32.c
@@ -86,13 +86,13 @@ static FARPROC GetProcAddressA(HMODULE hModule,LPCSTR lpProcName)
# undef GetProcAddress
# define GetProcAddress GetProcAddressA
-static HINSTANCE LoadLibraryA(LPCSTR *lpLibFileName)
+static HINSTANCE LoadLibraryA(LPCSTR lpLibFileName)
{
WCHAR *fnamw;
size_t len_0=strlen(lpLibFileName)+1,i;
#ifdef _MSC_VER
- fname = (WCHAR *)_alloca (len_0*sizeof(WCHAR));
+ fnamw = (WCHAR *)_alloca (len_0*sizeof(WCHAR));
#else
fnamw = (WCHAR *)alloca (len_0*sizeof(WCHAR));
#endif