From 1a7d3263599ada35c850140f82770a263857572d Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Tue, 1 Aug 2006 08:07:22 +0000 Subject: [PATCH] Minor fix due to recent API changes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29428 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/Path.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 7c14ea7df47..7b74746900e 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -334,7 +334,7 @@ Path::getLast() const { } bool -Path::getStatusInfo(FileStatus &info, std::string *ErrStr) const { +Path::getFileStatus(FileStatus &info, std::string *ErrStr) const { WIN32_FILE_ATTRIBUTE_DATA fi; if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi)) return GetError("getStatusInfo():" + std::string(path) +