diff options
author | Greg Clayton <gclayton@apple.com> | 2011-02-08 17:49:02 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-02-08 17:49:02 +0000 |
commit | 504f89a7e8c424a90d9ab323dc84598787f80193 (patch) | |
tree | 9ad59e3f5a4cdc0599e8eaa6f3f5d0b9047db965 /lldb/source/Core/Error.cpp | |
parent | 7d90bf55512a818a7a9f6afe7b06af373eaba720 (diff) | |
download | bcm5719-llvm-504f89a7e8c424a90d9ab323dc84598787f80193.tar.gz bcm5719-llvm-504f89a7e8c424a90d9ab323dc84598787f80193.zip |
Added a file abtraction layer into the Host section of LLDB.
llvm-svn: 125093
Diffstat (limited to 'lldb/source/Core/Error.cpp')
-rw-r--r-- | lldb/source/Core/Error.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Error.cpp b/lldb/source/Core/Error.cpp index f12f34ba6b7..da137174bce 100644 --- a/lldb/source/Core/Error.cpp +++ b/lldb/source/Core/Error.cpp @@ -244,7 +244,7 @@ Error::LogIfError (Log *log, const char *format, ...) // "eErrorTypeMachKernel" //---------------------------------------------------------------------- void -Error::SetError (uint32_t err) +Error::SetMachError (uint32_t err) { m_code = err; m_type = eErrorTypeMachKernel; |