diff options
Diffstat (limited to 'lib/Support/SystemUtils.cpp')
-rw-r--r-- | lib/Support/SystemUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp index 97e13067d0..aca9e5a402 100644 --- a/lib/Support/SystemUtils.cpp +++ b/lib/Support/SystemUtils.cpp @@ -96,7 +96,7 @@ std::string FindExecutable(const std::string &ExeName, const char *PathStr = getenv("PATH"); if (PathStr == 0) return ""; - // Now we have a colon seperated list of directories to search... try them... + // Now we have a colon separated list of directories to search... try them... unsigned PathLen = strlen(PathStr); while (PathLen) { // Find the first colon... |