diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2017-10-11 02:09:06 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-10-11 02:09:06 +0000 |
commit | b4f1b88551092e5e838d08fe06dff325a06837ae (patch) | |
tree | 6b926d7de6d3b924e366aa7c1c56921637d962d2 /llvm/lib/Support/Windows/Path.inc | |
parent | b5152447baba04d240ab2a831c9558b55f2dfd7d (diff) | |
download | bcm5719-llvm-b4f1b88551092e5e838d08fe06dff325a06837ae.tar.gz bcm5719-llvm-b4f1b88551092e5e838d08fe06dff325a06837ae.zip |
WIN32_FIND_DATA -> WIN32_FIND_DATAW.
Should fix mingw bot.
llvm-svn: 315413
Diffstat (limited to 'llvm/lib/Support/Windows/Path.inc')
-rw-r--r-- | llvm/lib/Support/Windows/Path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/Path.inc b/llvm/lib/Support/Windows/Path.inc index 1ab354bf094..94cb2e422c5 100644 --- a/llvm/lib/Support/Windows/Path.inc +++ b/llvm/lib/Support/Windows/Path.inc @@ -799,7 +799,7 @@ int mapped_file_region::alignment() { return SysInfo.dwAllocationGranularity; } -static basic_file_status status_from_find_data(WIN32_FIND_DATA *FindData) { +static basic_file_status status_from_find_data(WIN32_FIND_DATAW *FindData) { return basic_file_status(file_type_from_attrs(FindData->dwFileAttributes), perms_from_attrs(FindData->dwFileAttributes), FindData->ftLastAccessTime.dwHighDateTime, |