summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2018-05-25 15:51:23 (GMT)
committersebres <sebres@users.sourceforge.net>2018-05-25 15:51:23 (GMT)
commit5e7a1545a61ab4e66c1796ad19343e15cd2cc2ba (patch)
tree67e81891ed43cbfe3ccc68548890666ec0d0fd1e /win
parentf4651a56605698bf681e88594e7a97d8acd50fac (diff)
downloadtcl-5e7a1545a61ab4e66c1796ad19343e15cd2cc2ba.zip
tcl-5e7a1545a61ab4e66c1796ad19343e15cd2cc2ba.tar.gz
tcl-5e7a1545a61ab4e66c1796ad19343e15cd2cc2ba.tar.bz2
minor indentation fix (no functional changes)
Diffstat (limited to 'win')
-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);
}