diff options
| author | vincentdarley <vincentdarley> | 2003-02-07 15:29:28 (GMT) |
|---|---|---|
| committer | vincentdarley <vincentdarley> | 2003-02-07 15:29:28 (GMT) |
| commit | 6c21825df4d9ac6303560c1eb2daba853adcead8 (patch) | |
| tree | df0c27aa852fca86559e364d49d3f08ff7d9cac8 /win/tclWinFCmd.c | |
| parent | 006f354fd121d4c439ac88c170fc18ea608ebd70 (diff) | |
| download | tcl-6c21825df4d9ac6303560c1eb2daba853adcead8.zip tcl-6c21825df4d9ac6303560c1eb2daba853adcead8.tar.gz tcl-6c21825df4d9ac6303560c1eb2daba853adcead8.tar.bz2 | |
first speedups to Win filesystem
Diffstat (limited to 'win/tclWinFCmd.c')
| -rw-r--r-- | win/tclWinFCmd.c | 5 |
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); |
