diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2023-04-24 16:28:21 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2023-04-24 16:28:21 (GMT) |
commit | 87e417c1a1ce9d369c4a846403c4d8799b4c8374 (patch) | |
tree | 85bb33a941caeed7fd3a563fdaacea9320999161 /generic/tclInt.h | |
parent | e95eb576664ff39f992f9eb6af44c66c9d5c0c73 (diff) | |
download | tcl-87e417c1a1ce9d369c4a846403c4d8799b4c8374.zip tcl-87e417c1a1ce9d369c4a846403c4d8799b4c8374.tar.gz tcl-87e417c1a1ce9d369c4a846403c4d8799b4c8374.tar.bz2 |
Fix [a814ee5bbd] - string compare/equal -length for long strings
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index cf8b3ce..d777e38 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3386,7 +3386,7 @@ MODULE_SCOPE int TclStringCmp(Tcl_Obj *value1Ptr, Tcl_Obj *value2Ptr, int checkEq, int nocase, Tcl_Size reqlength); MODULE_SCOPE int TclStringCmpOpts(Tcl_Interp *interp, int objc, Tcl_Obj *const objv[], int *nocase, - int *reqlength); + Tcl_Size *reqlength); MODULE_SCOPE int TclStringMatch(const char *str, Tcl_Size strLen, const char *pattern, int ptnLen, int flags); MODULE_SCOPE int TclStringMatchObj(Tcl_Obj *stringObj, |