summaryrefslogtreecommitdiffstats
path: root/win/tclWinFCmd.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley@noemail.net>2003-02-07 15:29:27 (GMT)
committervincentdarley <vincentdarley@noemail.net>2003-02-07 15:29:27 (GMT)
commitf05c7e95c1c25de7c9cdf8aa1a956af94e6b4a55 (patch)
treedf0c27aa852fca86559e364d49d3f08ff7d9cac8 /win/tclWinFCmd.c
parenta834d4f235276cae8f2fd1a2b85e47971f8b1d6e (diff)
downloadtcl-f05c7e95c1c25de7c9cdf8aa1a956af94e6b4a55.zip
tcl-f05c7e95c1c25de7c9cdf8aa1a956af94e6b4a55.tar.gz
tcl-f05c7e95c1c25de7c9cdf8aa1a956af94e6b4a55.tar.bz2
first speedups to Win filesystem
FossilOrigin-Name: e7c1a408636fa6c2f50eab390de6429992af7e51
Diffstat (limited to 'win/tclWinFCmd.c')
-rw-r--r--win/tclWinFCmd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c
index 28e7f27..621d352 100644
--- a/win/tclWinFCmd.c
+++ b/win/tclWinFCmd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinFCmd.c,v 1.34 2003/02/04 17:06:53 vincentdarley Exp $
+ * RCS: @(#) $Id: tclWinFCmd.c,v 1.35 2003/02/07 15:29:33 vincentdarley Exp $
*/
#include "tclWinInt.h"
@@ -1136,7 +1136,8 @@ TraverseWinTree(
oldTargetLen = 0; /* lint. */
nativeSource = (TCHAR *) Tcl_DStringValue(sourcePtr);
- nativeTarget = (TCHAR *) (targetPtr == NULL ? NULL : Tcl_DStringValue(targetPtr));
+ nativeTarget = (TCHAR *) (targetPtr == NULL
+ ? NULL : Tcl_DStringValue(targetPtr));
oldSourceLen = Tcl_DStringLength(sourcePtr);
sourceAttr = (*tclWinProcs->getFileAttributesProc)(nativeSource);