diff options
author | nijtmans <nijtmans> | 2009-02-03 23:10:57 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-02-03 23:10:57 (GMT) |
commit | 6b40f13d26013e672072cb794817a2d322d8127e (patch) | |
tree | a72237070484512e9aa19c3f44b7ed7313fe1086 /win/tclWinTest.c | |
parent | 78da1e5f1b89986ba2526d799110ffc708040c21 (diff) | |
download | tcl-6b40f13d26013e672072cb794817a2d322d8127e.zip tcl-6b40f13d26013e672072cb794817a2d322d8127e.tar.gz tcl-6b40f13d26013e672072cb794817a2d322d8127e.tar.bz2 |
- eliminate some unnessary type casts
- some internal const decorations
- spacing
Diffstat (limited to 'win/tclWinTest.c')
-rw-r--r-- | win/tclWinTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinTest.c b/win/tclWinTest.c index 29e4974..35e7348 100644 --- a/win/tclWinTest.c +++ b/win/tclWinTest.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinTest.c,v 1.24 2008/10/16 22:34:19 nijtmans Exp $ + * RCS: @(#) $Id: tclWinTest.c,v 1.25 2009/02/03 23:10:58 nijtmans Exp $ */ #include "tclInt.h" @@ -189,7 +189,7 @@ TestvolumetypeCmd( #define VOL_BUF_SIZE 32 int found; char volType[VOL_BUF_SIZE]; - char *path; + const char *path; if (objc > 2) { Tcl_WrongNumArgs(interp, 1, objv, "?name?"); |