From b4f1b88551092e5e838d08fe06dff325a06837ae Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Wed, 11 Oct 2017 02:09:06 +0000 Subject: [PATCH] WIN32_FIND_DATA -> WIN32_FIND_DATAW. Should fix mingw bot. llvm-svn: 315413 --- llvm/lib/Support/Windows/Path.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/Windows/Path.inc b/llvm/lib/Support/Windows/Path.inc index 1ab354bf0943..94cb2e422c59 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,