diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 11:10:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 11:10:10 (GMT) |
commit | a435d9e14b141cab29412f38348c5b016c7672ba (patch) | |
tree | 305755843bb78eab3a9fa68148ec46585a11f31b /generic/tclTestObj.c | |
parent | df537d0dfb0d776a346f5c04aca6cb5f090c0b1a (diff) | |
download | tcl-a435d9e14b141cab29412f38348c5b016c7672ba.zip tcl-a435d9e14b141cab29412f38348c5b016c7672ba.tar.gz tcl-a435d9e14b141cab29412f38348c5b016c7672ba.tar.bz2 |
more internal use of size_t (in stead of int)
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 06f8e5f..5627608 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -1101,7 +1101,7 @@ TestobjCmd( if (CheckIfVarUnset(interp, varPtr,varIndex)) { return TCL_ERROR; } - Tcl_SetObjResult(interp, Tcl_NewIntObj(varPtr[varIndex]->refCount)); + Tcl_SetObjResult(interp, Tcl_NewWideIntObj(varPtr[varIndex]->refCount)); } else if (strcmp(subCmd, "type") == 0) { if (objc != 3) { goto wrongNumArgs; |