From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 4 Dec 2023 08:21:28 +0000 (+0100) Subject: [3.12] gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679) (GH-112690) X-Git-Tag: v3.12.1~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bfad9578d1d4d85b3628790bf27146cb0754a193;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679) (GH-112690) (cherry picked from commit 23e001fa9f1897ba3384c02bbbe634313358a549) Co-authored-by: Christopher Chavez --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 5abde84ebc2e..453be594d062 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;