diff options
author | Greg Clayton <gclayton@apple.com> | 2011-06-24 22:31:10 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-06-24 22:31:10 +0000 |
commit | 5fd05903d488cc91dc53c40bc0c7e802b4998ce8 (patch) | |
tree | ee94545b8213e4cbfeefac5408e0b35fceb85a45 /lldb/source/Expression/ClangUserExpression.cpp | |
parent | 6bc2164d2af69f62291a54e143208c883911739d (diff) | |
download | bcm5719-llvm-5fd05903d488cc91dc53c40bc0c7e802b4998ce8.tar.gz bcm5719-llvm-5fd05903d488cc91dc53c40bc0c7e802b4998ce8.zip |
Cleanup error output on expressions.
llvm-svn: 133834
Diffstat (limited to 'lldb/source/Expression/ClangUserExpression.cpp')
-rw-r--r-- | lldb/source/Expression/ClangUserExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index 3c8c3434293..0df6a5b63b7 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -599,7 +599,7 @@ ClangUserExpression::Evaluate (ExecutionContext &exe_ctx, if (exe_ctx.process == NULL || exe_ctx.process->GetState() != lldb::eStateStopped) { - error.SetErrorString ("Must have a live but stopped process to evaluate expressions."); + error.SetErrorString ("must have a stopped process to evaluate expressions."); result_valobj_sp = ValueObjectConstResult::Create (NULL, error); return eExecutionSetupError; |