summaryrefslogtreecommitdiffstats
path: root/generic/tclStrIdxTree.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclStrIdxTree.c')
-rw-r--r--generic/tclStrIdxTree.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tclStrIdxTree.c b/generic/tclStrIdxTree.c
index 1c4cff3..e9ba362 100644
--- a/generic/tclStrIdxTree.c
+++ b/generic/tclStrIdxTree.c
@@ -479,16 +479,15 @@ TclStrIdxTreePrint(
int
TclStrIdxTreeTestObjCmd(
- ClientData clientData, Tcl_Interp *interp,
+ void *clientData, Tcl_Interp *interp,
int objc, Tcl_Obj *const objv[])
{
const char *cs, *cin, *ret;
static const char *const options[] = {
- "index", "puts-index", "findequal",
- NULL
+ "findequal", "index", "puts-index", NULL
};
enum optionInd {
- O_INDEX, O_PUTS_INDEX, O_FINDEQUAL
+ O_FINDEQUAL, O_INDEX, O_PUTS_INDEX
};
int optionIndex;