diff options
author | vincentdarley <vincentdarley> | 2002-03-24 18:09:19 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-03-24 18:09:19 (GMT) |
commit | b81b0779c56b017a12588c6800507f3cef5fc499 (patch) | |
tree | b5ba918da16768a37943ae82d0b2220f3c2ee51c /generic | |
parent | 8a02ee155f91a31fb66ddc39cbbf1d1bbbeb4f36 (diff) | |
download | tcl-b81b0779c56b017a12588c6800507f3cef5fc499.zip tcl-b81b0779c56b017a12588c6800507f3cef5fc499.tar.gz tcl-b81b0779c56b017a12588c6800507f3cef5fc499.tar.bz2 |
fixed typo and compiler warning in last commit; all tests now pass on unix
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclIOUtil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 9432c8f..f6bf2c7 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -17,7 +17,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.37 2002/03/24 11:41:50 vincentdarley Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.38 2002/03/24 18:09:19 vincentdarley Exp $ */ #include "tclInt.h" @@ -1757,7 +1757,7 @@ Tcl_FSMatchInDirectory(interp, result, pathPtr, pattern, types) switch (tclPlatform) { case TCL_PLATFORM_UNIX: if (cwdStr[cwdLen-1] != '/') { - sep == '/'; + sep = '/'; } break; case TCL_PLATFORM_WINDOWS: |