diff options
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r-- | generic/tclFileName.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c index b9417d6..4de4604 100644 --- a/generic/tclFileName.c +++ b/generic/tclFileName.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclFileName.c,v 1.80 2007/04/10 14:47:15 dkf Exp $ + * RCS: @(#) $Id: tclFileName.c,v 1.81 2007/04/10 22:01:57 dkf Exp $ */ #include "tclInt.h" @@ -57,7 +57,10 @@ static int DoGlob(Tcl_Interp *interp, Tcl_Obj *resultPtr, */ static void -SetResultLength(Tcl_DString *resultPtr, int offset, int extended) +SetResultLength( + Tcl_DString *resultPtr, + int offset, + int extended) { Tcl_DStringSetLength(resultPtr, offset); if (extended == 2) { |