diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-03-05 15:47:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 15:47:00 (GMT) |
commit | 6927632492cbad86a250aa006c1847e03b03e70b (patch) | |
tree | e78631ceabf92fb41ab1deb78a024d2704a3eddb /Python/fileutils.c | |
parent | ab9301a28fa431d7a32163126fc96de3b2ce6107 (diff) | |
download | cpython-6927632492cbad86a250aa006c1847e03b03e70b.zip cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.gz cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.bz2 |
Remove trailing spaces (GH-31695)
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r-- | Python/fileutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c index 9a71b83..111d7fa 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -2093,7 +2093,7 @@ join_relfile(wchar_t *buffer, size_t bufsize, const wchar_t *dirname, const wchar_t *relfile) { #ifdef MS_WINDOWS - if (FAILED(PathCchCombineEx(buffer, bufsize, dirname, relfile, + if (FAILED(PathCchCombineEx(buffer, bufsize, dirname, relfile, PATHCCH_ALLOW_LONG_PATHS))) { return -1; } |