commit | cb39544fedb3a5c4834c4a741031f9121413bc63 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Wed Nov 10 19:02:11 2010 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Wed Nov 10 19:02:11 2010 +0000 |
tree | 7fc0880055cd5f614c32f533436bead9551a862e | |
parent | b1a3d9ce55450fd8357f4bebed1de1547f1a080f [diff] [blame] |
Trivial fix for an error message. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@118697 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangUserExpression.cpp b/source/Expression/ClangUserExpression.cpp index 446b0d0..f351528 100644 --- a/source/Expression/ClangUserExpression.cpp +++ b/source/Expression/ClangUserExpression.cpp
@@ -402,7 +402,7 @@ } else { - error_stream.Printf("Expression can't be run; neither DWARF nor a JIT compiled function are present"); + error_stream.Printf("Expression can't be run; neither DWARF nor a JIT compiled function is present"); return false; } }