summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-11-27 23:37:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-11-27 23:37:32 (GMT)
commit82fb7b1d551b7e74efa4ee9cc814ef74fab5332c (patch)
treed95cfe374a17e826b192f03a62d9ee6a8c046e96 /generic/tclInt.h
parent513b2d50314fa22ef6df699c698ee0f05b7f59b5 (diff)
downloadtcl-82fb7b1d551b7e74efa4ee9cc814ef74fab5332c.zip
tcl-82fb7b1d551b7e74efa4ee9cc814ef74fab5332c.tar.gz
tcl-82fb7b1d551b7e74efa4ee9cc814ef74fab5332c.tar.bz2
size_t result for lengthProc. More usage of Tcl_GetWideUIntFromObj
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 0ff0d8e..b5fc48e 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1093,7 +1093,7 @@ typedef struct ActiveInterpTrace {
typedef struct { /* For internal core use only */
Tcl_ObjType objType;
- unsigned long long (*lengthProc)(Tcl_Obj *obj);
+ size_t (*lengthProc)(Tcl_Obj *obj);
} TclObjTypeWithAbstractList;
#define TCL_OBJTYPE_V0_1(lengthProc) (sizeof(TclObjTypeWithAbstractList)) \
}, lengthProc /* For internal core use only */