diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/getpathp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/PC/getpathp.c b/PC/getpathp.c index 0ee5308..888bef1 100644 --- a/PC/getpathp.c +++ b/PC/getpathp.c @@ -532,8 +532,7 @@ _Py_GetDLLPath(void) static PyStatus -get_program_full_path(const PyConfig *config, - PyCalculatePath *calculate, _PyPathConfig *pathconfig) +get_program_full_path(_PyPathConfig *pathconfig) { const wchar_t *pyvenv_launcher; wchar_t program_full_path[MAXPATHLEN+1]; @@ -977,7 +976,7 @@ calculate_path_impl(const PyConfig *config, { PyStatus status; - status = get_program_full_path(config, calculate, pathconfig); + status = get_program_full_path(pathconfig); if (_PyStatus_EXCEPTION(status)) { return status; } |