aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Win32
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2006-08-01 08:07:22 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2006-08-01 08:07:22 +0000
commit1a7d3263599ada35c850140f82770a263857572d (patch)
tree868b294b895a2a97a73e262226da2d5e3a14c519 /lib/System/Win32
parentca6a18f9dc99359ae65a9588f3e9852bb528c44d (diff)
downloadexternal_llvm-1a7d3263599ada35c850140f82770a263857572d.zip
external_llvm-1a7d3263599ada35c850140f82770a263857572d.tar.gz
external_llvm-1a7d3263599ada35c850140f82770a263857572d.tar.bz2
Minor fix due to recent API changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32')
-rw-r--r--lib/System/Win32/Path.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc
index 7c14ea7..7b74746 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) +