diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2004-09-14 21:42:53 (GMT) | 
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2004-09-14 21:42:53 (GMT) | 
| commit | 78d20dd0fad930674c60b4acf7a680392c4e460a (patch) | |
| tree | f4831a9a33d1a963686dfd76a3235338f26c5b3e /generic | |
| parent | 807dad29a3e4ffb856a0814751efc851f5d6bfbe (diff) | |
| download | tcl-78d20dd0fad930674c60b4acf7a680392c4e460a.zip tcl-78d20dd0fad930674c60b4acf7a680392c4e460a.tar.gz tcl-78d20dd0fad930674c60b4acf7a680392c4e460a.tar.bz2  | |
silence compiler warning in tclClock.c
Diffstat (limited to 'generic')
| -rw-r--r-- | generic/tclClock.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclClock.c b/generic/tclClock.c index 2f54977..f6edf43 100644 --- a/generic/tclClock.c +++ b/generic/tclClock.c @@ -12,7 +12,7 @@   * See the file "license.terms" for information on usage and redistribution   * of this file, and for a DISCLAIMER OF ALL WARRANTIES.   * - * RCS: @(#) $Id: tclClock.c,v 1.32 2004/09/11 18:57:56 kennykb Exp $ + * RCS: @(#) $Id: tclClock.c,v 1.33 2004/09/14 21:42:55 kennykb Exp $   */  #include "tclInt.h" @@ -551,7 +551,7 @@ TclClockOldscanObjCmd( ClientData clientData, /* unused */      Tcl_Obj *baseObjPtr = NULL;      int useGMT = 0;      unsigned long baseClock; -    long clockVal; +    unsigned long clockVal;      long zone;      Tcl_Obj *resultPtr;      int dummy;  | 
