summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 07a361e..e0089ce 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -4344,7 +4344,7 @@ MODULE_SCOPE void TclDbInitNewObj(Tcl_Obj *objPtr, const char *file,
*(lenPtr) = *((size_t *) (objPtr)->internalRep.twoPtrValue.ptr1);
return Tcl_GetUnicodeFromObj(objPtr, NULL);
}
- static inline unsigned char *TclGetByteArrayFromObj(Tcl_Obj *objPtr, int *lenPtr) {
+ static inline unsigned char *TclGetByteArrayFromObj(Tcl_Obj *objPtr, size_t *lenPtr) {
Tcl_GetByteArrayFromObj(objPtr, NULL);
*(lenPtr) = *((size_t *) (objPtr)->internalRep.twoPtrValue.ptr1);
return Tcl_GetByteArrayFromObj(objPtr, NULL);