Skip to content

Commit

Permalink
bpo-44391: Remove unused argument from a varargs call. (pythonGH-29843)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4141d94)

Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk>
  • Loading branch information
vsajip authored and miss-islington committed Nov 29, 2021
1 parent efe2a23 commit 7c1689c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PC/launcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ _locate_pythons_for_key(HKEY root, LPCWSTR subkey, REGSAM flags, int bits,
}
else if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
debug(L"locate_pythons_for_key: '%ls' is a directory\n",
ip->executable, attrs);
ip->executable);
}
else if (find_existing_python(ip->executable)) {
debug(L"locate_pythons_for_key: %ls: already found\n",
Expand Down

0 comments on commit 7c1689c

Please sign in to comment.