diff options
| author | vincentdarley <vincentdarley> | 2004-01-21 19:59:32 (GMT) |
|---|---|---|
| committer | vincentdarley <vincentdarley> | 2004-01-21 19:59:32 (GMT) |
| commit | 1723d64b6be3d71d07bcef3862600e5f340db128 (patch) | |
| tree | 0ffe5e984dd325a6bea1e24606e505aa4f37574b /generic/tclTest.c | |
| parent | 1e71895c603d41b20b0bbed17381ee6f635bc8c9 (diff) | |
| download | tcl-1723d64b6be3d71d07bcef3862600e5f340db128.zip tcl-1723d64b6be3d71d07bcef3862600e5f340db128.tar.gz tcl-1723d64b6be3d71d07bcef3862600e5f340db128.tar.bz2 | |
filesystem optimisation -- Three main issues accomplished: (1) cleaned up variable names in
Diffstat (limited to 'generic/tclTest.c')
| -rw-r--r-- | generic/tclTest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 71c08a5..7c9361d 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.74 2003/12/24 04:18:20 davygrvy Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.75 2004/01/21 19:59:33 vincentdarley Exp $ */ #define TCL_TEST @@ -365,7 +365,7 @@ static void TestReport _ANSI_ARGS_ ((CONST char* cmd, Tcl_Obj* arg1, Tcl_Obj* arg2)); static Tcl_Obj* TestReportGetNativePath _ANSI_ARGS_ (( - Tcl_Obj* pathObjPtr)); + Tcl_Obj* pathPtr)); static int TestReportStat _ANSI_ARGS_ ((Tcl_Obj *path, Tcl_StatBuf *buf)); @@ -6054,8 +6054,8 @@ TestReportInFilesystem(Tcl_Obj *pathPtr, ClientData *clientDataPtr) * path object, or NULL if no such representation exists. */ static Tcl_Obj* -TestReportGetNativePath(Tcl_Obj* pathObjPtr) { - return (Tcl_Obj*) Tcl_FSGetInternalRep(pathObjPtr, &testReportingFilesystem); +TestReportGetNativePath(Tcl_Obj* pathPtr) { + return (Tcl_Obj*) Tcl_FSGetInternalRep(pathPtr, &testReportingFilesystem); } static void |
