summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwin/tclWinFile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index 2395ae1..0bed39e 100755
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.c
@@ -1440,17 +1440,17 @@ TclpGetUserHome(
handle = LoadLibraryA("netapi32.dll");
if (handle) {
netApiBufferFreeProc = (NETAPIBUFFERFREEPROC *)
- GetProcAddress(handle, "NetApiBufferFree");
+ GetProcAddress(handle, "NetApiBufferFree");
netGetDCNameProc = (NETGETDCNAMEPROC *)
- GetProcAddress(handle, "NetGetDCName");
+ GetProcAddress(handle, "NetGetDCName");
netUserGetInfoProc = (NETUSERGETINFOPROC *)
- GetProcAddress(handle, "NetUserGetInfo");
+ GetProcAddress(handle, "NetUserGetInfo");
Tcl_CreateExitHandler(TclpUnloadFile, handle);
}
handle = LoadLibraryA("userenv.dll");
if (handle) {
getProfilesDirectoryProc = (GETPROFILESDIRECTORYPROC *)
- GetProcAddress(handle, "GetProfilesDirectoryW");
+ GetProcAddress(handle, "GetProfilesDirectoryW");
Tcl_CreateExitHandler(TclpUnloadFile, handle);
}