diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-17 19:58:28 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-17 19:58:28 +0000 |
commit | c889c8fd0f7a94a9737e91e19aa4f522b9ddfd80 (patch) | |
tree | 6ffa87dda7342be0d1b19521f83893d2d16d36df /lib/Support | |
parent | e65b219edbf5d18ed235dc8a5919580f71d2327b (diff) | |
download | external_llvm-c889c8fd0f7a94a9737e91e19aa4f522b9ddfd80.zip external_llvm-c889c8fd0f7a94a9737e91e19aa4f522b9ddfd80.tar.gz external_llvm-c889c8fd0f7a94a9737e91e19aa4f522b9ddfd80.tar.bz2 |
Fix a funny typo. Thanks to Aaron Ballman for noticing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186532 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Windows/Path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Windows/Path.inc b/lib/Support/Windows/Path.inc index d51332e..2b04318 100644 --- a/lib/Support/Windows/Path.inc +++ b/lib/Support/Windows/Path.inc @@ -1054,7 +1054,7 @@ error_code openFileForRead(const Twine &Name, int &ResultFD) { OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if (H == INVALID_HANDLE_VALUE) { error_code EC = windows_error(::GetLastError()); - // Provide a better error massage when trying to open directories. + // Provide a better error message when trying to open directories. // This only runs if we failed to open the file, so there is probably // no performances issues. if (EC != windows_error::access_denied) |