8000 gh-112672: use `Tcl_Size` to avoid incompatible pointer type warnings by chrstphrchvz · Pull Request #112681 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-112672: use Tcl_Size to avoid incompatible pointer type warnings #112681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into patch-112672
  • Loading branch information
chrstphrchvz authored Dec 4, 2023
commit feb8c90c8e0115de5d4f97f4cfacbd682a78902e
2 changes: 1 addition & 1 deletion Modules/_tkinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1208,7 +1208,7 @@ typedef struct Tkapp_CallEvent {
Tcl_Condition *done;
} Tkapp_CallEvent;

void
static void
Tkapp_CallDeallocArgs(Tcl_Obj** objv, Tcl_Obj** objStore, Tcl_Size objc)
{
Tcl_Size i;
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0