summaryrefslogtreecommitdiffstats
path: root/win/tclWinFile.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-03-19 14:56:45 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-03-19 14:56:45 (GMT)
commitc740da6bc26ac29aeb5b548f7e350fd15ec1f890 (patch)
treebcfa89065ecea0a374bed505c235b77cba3db0a3 /win/tclWinFile.c
parent9e0fbf5ef34d910758ee6a09bbf91bb5ec8f58f4 (diff)
downloadtcl-c740da6bc26ac29aeb5b548f7e350fd15ec1f890.zip
tcl-c740da6bc26ac29aeb5b548f7e350fd15ec1f890.tar.gz
tcl-c740da6bc26ac29aeb5b548f7e350fd15ec1f890.tar.bz2
Fix indentation/brace usage style issues
Diffstat (limited to 'win/tclWinFile.c')
-rw-r--r--win/tclWinFile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index c0dd4fd..baf0734 100644
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.c
@@ -149,7 +149,7 @@ typedef struct {
* Other typedefs required by this code.
*/
-static __time64_t ToCTime(FILETIME fileTime);
+static __time64_t ToCTime(FILETIME fileTime);
static void FromCTime(__time64_t posixTime, FILETIME *fileTime);
/*
@@ -972,7 +972,7 @@ TclpMatchInDirectory(
attr = GetFileAttributesW(native);
if ((attr == INVALID_FILE_ATTRIBUTES)
- || ((attr & FILE_ATTRIBUTE_DIRECTORY) == 0)) {
+ || ((attr & FILE_ATTRIBUTE_DIRECTORY) == 0)) {
return TCL_OK;
}