diff options
Diffstat (limited to 'tools/lldb-mi/MICmdArgValOptionShort.cpp')
-rw-r--r-- | tools/lldb-mi/MICmdArgValOptionShort.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lldb-mi/MICmdArgValOptionShort.cpp b/tools/lldb-mi/MICmdArgValOptionShort.cpp index 25eac676f5f92..d18f72eaa8b10 100644 --- a/tools/lldb-mi/MICmdArgValOptionShort.cpp +++ b/tools/lldb-mi/MICmdArgValOptionShort.cpp @@ -80,7 +80,7 @@ CMICmdArgValOptionShort::IsArgShortOption(const CMIUtilString &vrTxt) const return false; // Look for -f short option - nPos = vrTxt.find("-"); + nPos = vrTxt.find('-'); if (nPos != 0) return false; |