Fix some accidental Prints of StringRefs that snuck in.

llvm-svn: 287412
This commit is contained in:
Zachary Turner 2016-11-19 00:50:29 +00:00
parent 66bfcb3ea5
commit 72f4997cbf
2 changed files with 8 additions and 4 deletions

View File

@ -393,12 +393,14 @@ Error Variable::GetValuesForVariableExpressionPath(
variable_list.Clear();
if (!g_regex.Execute(variable_expr_path, &regex_match)) {
error.SetErrorStringWithFormat(
"unable to extract a variable name from '%s'", variable_expr_path);
"unable to extract a variable name from '%s'",
variable_expr_path.str().c_str());
return error;
}
if (!regex_match.GetMatchAtIndex(variable_expr_path, 1, variable_name)) {
error.SetErrorStringWithFormat(
"unable to extract a variable name from '%s'", variable_expr_path);
"unable to extract a variable name from '%s'",
variable_expr_path.str().c_str());
return error;
}
if (!callback(baton, variable_name.c_str(), variable_list)) {
@ -434,7 +436,8 @@ Error Variable::GetValuesForVariableExpressionPath(
if (!valobj_sp) {
error.SetErrorStringWithFormat(
"invalid expression path '%s' for variable '%s'",
variable_sub_expr_path, var_sp->GetName().GetCString());
variable_sub_expr_path.str().c_str(),
var_sp->GetName().GetCString());
variable_list.RemoveVariableAtIndex(i);
continue;
}

View File

@ -327,7 +327,8 @@ Error TargetList::CreateTargetInternal(Debugger &debugger,
bool is_dummy_target) {
Timer scoped_timer(LLVM_PRETTY_FUNCTION,
"TargetList::CreateTarget (file = '%s', arch = '%s')",
user_exe_path, specified_arch.GetArchitectureName());
user_exe_path.str().c_str(),
specified_arch.GetArchitectureName());
Error error;
ArchSpec arch(specified_arch);