diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-18 09:33:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-18 09:33:43 (GMT) |
commit | 0ff016021c022c1f60500a200461fee9721b97e1 (patch) | |
tree | 8f4cf49c6b3b985d3661913ef4f88a70ad837d71 /generic/tclTestObj.c | |
parent | d8577f3bd9606dbc31ebc5b66d5e6fb05381c5e2 (diff) | |
download | tcl-0ff016021c022c1f60500a200461fee9721b97e1.zip tcl-0ff016021c022c1f60500a200461fee9721b97e1.tar.gz tcl-0ff016021c022c1f60500a200461fee9721b97e1.tar.bz2 |
Make less dependent on UNICODE definition
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r-- | generic/tclTestObj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index 6dce6a3..a54a06f 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -574,7 +574,6 @@ TestindexobjCmd( int allowAbbrev, index, index2, setError, i, result; const char **argv; static const char *const tablePtr[] = {"a", "b", "check", NULL}; - (void)dummy; /* * Keep this structure declaration in sync with tclIndexObj.c @@ -585,6 +584,7 @@ TestindexobjCmd( int index; /* Selected index into table. */ }; struct IndexRep *indexRep; + (void)dummy; if ((objc == 3) && (strcmp(Tcl_GetString(objv[1]), "check") == 0)) { |