From 30bd853412cbf5b89370281f625c556eb612a385 Mon Sep 17 00:00:00 2001 From: Christopher Chavez Date: Mon, 4 Dec 2023 02:00:27 -0600 Subject: [PATCH] gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679) (cherry picked from commit 23e001fa9f1897ba3384c02bbbe634313358a549) Co-authored-by: Christopher Chavez --- Modules/_tkinter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 5abde84ebc2efd..453be594d06203 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1218,7 +1218,7 @@ typedef struct Tkapp_CallEvent { Tcl_Condition *done; } Tkapp_CallEvent; -void +static void Tkapp_CallDeallocArgs(Tcl_Obj** objv, Tcl_Obj** objStore, int objc) { int i;