From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 4 Dec 2023 08:18:03 +0000 (+0100) Subject: [3.11] gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679) (GH-112691) X-Git-Tag: v3.11.7~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3eea835d85814b3cda8e43a49e7718060e701195;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679) (GH-112691) (cherry picked from commit 23e001fa9f1897ba3384c02bbbe634313358a549) Co-authored-by: Christopher Chavez --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index e5377073ff76..005036d3ff2e 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1249,7 +1249,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;