diff options
Diffstat (limited to 'lldb/source/Interpreter/OptionValueFileSpec.cpp')
-rw-r--r-- | lldb/source/Interpreter/OptionValueFileSpec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/OptionValueFileSpec.cpp b/lldb/source/Interpreter/OptionValueFileSpec.cpp index 62b80bc9f8b..944f0344173 100644 --- a/lldb/source/Interpreter/OptionValueFileSpec.cpp +++ b/lldb/source/Interpreter/OptionValueFileSpec.cpp @@ -93,7 +93,7 @@ OptionValueFileSpec::SetValueFromCString (const char *value_cstr, if (value_cstr && value_cstr[0]) { m_value_was_set = true; - m_current_value.SetFile(value_cstr, false); + m_current_value.SetFile(value_cstr, value_cstr[0] == '~'); } else { |