diff options
| author | nijtmans <nijtmans> | 2009-02-10 23:08:56 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2009-02-10 23:08:56 (GMT) |
| commit | aa79c984da99c1d87d5483619079d8e75e27cabe (patch) | |
| tree | a407af9f40cff9d5a67f7ecf3a88b22578e0f842 /generic/tclTimer.c | |
| parent | c7673ecb04981c69103b2411fe0c6c563627cae2 (diff) | |
| download | tcl-aa79c984da99c1d87d5483619079d8e75e27cabe.zip tcl-aa79c984da99c1d87d5483619079d8e75e27cabe.tar.gz tcl-aa79c984da99c1d87d5483619079d8e75e27cabe.tar.bz2 | |
- eliminate some unnessary type casts
- some internal const decorations
- spacing
Diffstat (limited to 'generic/tclTimer.c')
| -rw-r--r-- | generic/tclTimer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTimer.c b/generic/tclTimer.c index b970d50..94a8c16 100644 --- a/generic/tclTimer.c +++ b/generic/tclTimer.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: tclTimer.c,v 1.38 2009/01/09 11:21:46 dkf Exp $ + * RCS: @(#) $Id: tclTimer.c,v 1.39 2009/02/10 23:09:04 nijtmans Exp $ */ #include "tclInt.h" @@ -879,7 +879,7 @@ Tcl_AfterObjCmd( } case AFTER_CANCEL: { Tcl_Obj *commandPtr; - char *command, *tempCommand; + const char *command, *tempCommand; int tempLength; if (objc < 3) { @@ -1096,7 +1096,7 @@ GetAfterEvent( * this interpreter. */ Tcl_Obj *commandPtr) { - char *cmdString; /* Textual identifier for after event, such as + const char *cmdString; /* Textual identifier for after event, such as * "after#6". */ AfterInfo *afterPtr; int id; |
