diff options
author | dgp <dgp@users.sourceforge.net> | 2004-06-08 20:25:43 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-06-08 20:25:43 (GMT) |
commit | 0bfce763373517dffd7999ac456bc2a8331d9bdd (patch) | |
tree | 7bd87a2bfe65ad0ef14bd628e9603ca5480819ad /generic | |
parent | 0c9e6cc0c0fbc431ddd9d42445b19d75d52d9a6f (diff) | |
download | tcl-0bfce763373517dffd7999ac456bc2a8331d9bdd.zip tcl-0bfce763373517dffd7999ac456bc2a8331d9bdd.tar.gz tcl-0bfce763373517dffd7999ac456bc2a8331d9bdd.tar.bz2 |
Silence compiler warnings
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclTest.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 2695920..1d7774a 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.62.2.7 2004/03/01 17:33:21 dgp Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.62.2.8 2004/06/08 20:25:43 dgp Exp $ */ #define TCL_TEST @@ -1985,7 +1985,8 @@ TesteventObjCmd( ClientData unused, /* Not used */ NULL }; int posIndex; /* Index of the chosen position */ - static CONST int posNum[] = { /* Interpretation of the chosen position */ + static CONST Tcl_QueuePosition posNum[] = { + /* Interpretation of the chosen position */ TCL_QUEUE_HEAD, TCL_QUEUE_TAIL, TCL_QUEUE_MARK |