diff options
Diffstat (limited to 'tools/lldb-mi/MICmdArgValString.cpp')
-rw-r--r-- | tools/lldb-mi/MICmdArgValString.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lldb-mi/MICmdArgValString.cpp b/tools/lldb-mi/MICmdArgValString.cpp index c8d3290..1c3e5f8 100644 --- a/tools/lldb-mi/MICmdArgValString.cpp +++ b/tools/lldb-mi/MICmdArgValString.cpp @@ -231,11 +231,11 @@ CMICmdArgValString::IsStringArgSingleText(const CMIUtilString &vrTxt) const return false; // Look for -f type short options, if found reject - if ((0 == vrTxt.find("-")) && (vrTxt.length() == 2)) + if ((0 == vrTxt.find('-')) && (vrTxt.length() == 2)) return false; // Look for thread group i1 i2 i3...., if found reject - if ((vrTxt.find("i") == 0) && ::isdigit(vrTxt[1])) + if ((vrTxt.find('i') == 0) && ::isdigit(vrTxt[1])) return false; // Look for numbers, if found reject |