summaryrefslogtreecommitdiffstats
path: root/generic/tkImgGIF.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-10-30 19:40:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-10-30 19:40:32 (GMT)
commit978ebdabc724269d5559757507f87bd121953099 (patch)
tree87be93974759bfc95575170f122d16c56c87640c /generic/tkImgGIF.c
parent5f8fa20d23ced1ed51787796956391f963658830 (diff)
downloadtk-978ebdabc724269d5559757507f87bd121953099.zip
tk-978ebdabc724269d5559757507f87bd121953099.tar.gz
tk-978ebdabc724269d5559757507f87bd121953099.tar.bz2
more int -> Tcl_Size (making use of the increased range in Tcl 9.0)
Diffstat (limited to 'generic/tkImgGIF.c')
-rw-r--r--generic/tkImgGIF.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkImgGIF.c b/generic/tkImgGIF.c
index f9f2ea6..b577fd8 100644
--- a/generic/tkImgGIF.c
+++ b/generic/tkImgGIF.c
@@ -423,7 +423,8 @@ FileReadGIF(
{
int fileWidth, fileHeight, imageWidth, imageHeight;
unsigned int nBytes;
- int index = 0, argc = 0, i, result = TCL_ERROR;
+ int index = 0, result = TCL_ERROR;
+ Tcl_Size argc = 0, i;
Tcl_Obj **objv;
unsigned char buf[100];
unsigned char *trashBuffer = NULL;