Remove trailing spaces (GH-31695)

This commit is contained in:
Serhiy Storchaka 2022-03-05 17:47:00 +02:00 committed by GitHub
parent ab9301a28f
commit 6927632492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 24 additions and 23 deletions

View file

@ -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;
}