diff options
Diffstat (limited to 'lldb/source/Expression/ClangFunction.cpp')
-rw-r--r-- | lldb/source/Expression/ClangFunction.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/source/Expression/ClangFunction.cpp b/lldb/source/Expression/ClangFunction.cpp index 3d5e8383f9a..4ef26d1cb2e 100644 --- a/lldb/source/Expression/ClangFunction.cpp +++ b/lldb/source/Expression/ClangFunction.cpp @@ -539,9 +539,11 @@ ClangFunction::ExecuteFunction ( // Not really sure what to do if Halt fails here... if (log) if (try_all_threads) - log->Printf ("Running function with timeout: %d timed out, trying with all threads enabled.", single_thread_timeout_usec); + log->Printf ("Running function with timeout: %d timed out, trying with all threads enabled.", + single_thread_timeout_usec); else - log->Printf ("Running function with timeout: %d timed out, abandoning execution.", single_thread_timeout_usec); + log->Printf ("Running function with timeout: %d timed out, abandoning execution.", + single_thread_timeout_usec); if (exe_ctx.process->Halt().Success()) { |