diff options
author | Pavel Labath <labath@google.com> | 2017-02-03 20:26:57 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-02-03 20:26:57 +0000 |
commit | 90505a0a2afb6ea9e8a8c1b326f25ca2282e4036 (patch) | |
tree | 27ff0649abb15cd538d0f0fa043f506a0740f1df /lldb/source/Commands/CommandObjectLog.cpp | |
parent | 1b65812267f53fce25070132acdf16901684887d (diff) | |
download | bcm5719-llvm-90505a0a2afb6ea9e8a8c1b326f25ca2282e4036.tar.gz bcm5719-llvm-90505a0a2afb6ea9e8a8c1b326f25ca2282e4036.zip |
Add a missing break statement
llvm-svn: 294036
Diffstat (limited to 'lldb/source/Commands/CommandObjectLog.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectLog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectLog.cpp b/lldb/source/Commands/CommandObjectLog.cpp index 579bfbbcd10..019ed6a25d5 100644 --- a/lldb/source/Commands/CommandObjectLog.cpp +++ b/lldb/source/Commands/CommandObjectLog.cpp @@ -133,6 +133,7 @@ public: break; case 'F': log_options |= LLDB_LOG_OPTION_PREPEND_FILE_FUNCTION; + break; default: error.SetErrorStringWithFormat("unrecognized option '%c'", short_option); |