diff options
author | Christopher Chavez <chrischavez@gmx.us> | 2023-12-04 08:00:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 08:00:27 (GMT) |
commit | 23e001fa9f1897ba3384c02bbbe634313358a549 (patch) | |
tree | f39154fe4ba1945c71bf57fb20a60ef1ee140a2c /Modules | |
parent | e5b0db0315941b968ebcc2414bfcdd2da44fd3c2 (diff) | |
download | cpython-23e001fa9f1897ba3384c02bbbe634313358a549.zip cpython-23e001fa9f1897ba3384c02bbbe634313358a549.tar.gz cpython-23e001fa9f1897ba3384c02bbbe634313358a549.tar.bz2 |
gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_tkinter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index f9a1864..64e752c 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1202,7 +1202,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; |