From 0c6a283b2ab8f921e30686984ccfa89c07296d3e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 5 Nov 2004 22:15:36 +0000 Subject: Stop propagating method names that violate the coding standard llvm-svn: 17498 --- llvm/lib/System/Win32/Program.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/System/Win32/Program.cpp') diff --git a/llvm/lib/System/Win32/Program.cpp b/llvm/lib/System/Win32/Program.cpp index a83f0e84f8e..0078fb76628 100644 --- a/llvm/lib/System/Win32/Program.cpp +++ b/llvm/lib/System/Win32/Program.cpp @@ -32,7 +32,7 @@ Program::FindProgramByName(const std::string& progName) { if (progName.length() == 0) // no program return Path(); Path temp; - if (!temp.set_file(progName)) // invalid name + if (!temp.setFile(progName)) // invalid name return Path(); if (temp.executable()) // already executable as is return temp; -- cgit v1.2.3