Skip to content

Commit 40a5753

Browse files
[3.9] bpo-44391: Remove unused argument from a varargs call. (GH-29843) (GH-29850)
1 parent da3e9dd commit 40a5753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PC/launcher.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ _locate_pythons_for_key(HKEY root, LPCWSTR subkey, REGSAM flags, int bits,
344344
}
345345
else if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
346346
debug(L"locate_pythons_for_key: '%ls' is a directory\n",
347-
ip->executable, attrs);
347+
ip->executable);
348348
}
349349
else if (find_existing_python(ip->executable)) {
350350
debug(L"locate_pythons_for_key: %ls: already found\n",

0 commit comments

Comments
 (0)