From be78069a172d522536001626cf0548fcb41e6bcb Mon Sep 17 00:00:00 2001 From: Michael Ortmann <41313082+michaelortmann@users.noreply.github.com> Date: Wed, 9 Oct 2024 03:10:09 +0200 Subject: [PATCH] Update missed python var type for Tcl9 --- src/mod/python.mod/pycmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/python.mod/pycmds.c b/src/mod/python.mod/pycmds.c index 9bcc6840d..fbdfddd66 100644 --- a/src/mod/python.mod/pycmds.c +++ b/src/mod/python.mod/pycmds.c @@ -378,7 +378,7 @@ static PyObject *py_dir(PyObject *self, PyObject *args) { int j; const char *info[] = {"info commands", "info procs"}, *s, *value; Tcl_Obj *tcl_list, **objv; - int objc; + Tcl_Size objc; py_list = PyList_New(0); for (i = 0; i < sizeof info / sizeof info[0]; i++) {