Skip to content

Commit

Permalink
WIN32_FIND_DATA -> WIN32_FIND_DATAW.
Browse files Browse the repository at this point in the history
Should fix mingw bot.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315413 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
pcc committed Oct 11, 2017
1 parent 0ac357a commit 6298944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Support/Windows/Path.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6298944

Please sign in to comment.