Fixed two printf format errors.

llvm-svn: 140239
This commit is contained in:
Greg Clayton 2011-09-21 06:45:51 +00:00
parent 5ce7f109cf
commit c1ef10f99e
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ SBFileSpecList::SBFileSpecList (const SBFileSpecList &rhs) :
if (log)
{
log->Printf ("SBFileSpecList::SBFileSpecList (const SBFileSpecList rhs.ap=%p) => SBFileSpecList(%p): %s",
log->Printf ("SBFileSpecList::SBFileSpecList (const SBFileSpecList rhs.ap=%p) => SBFileSpecList(%p)",
rhs.m_opaque_ap.get(), m_opaque_ap.get());
}
}

View File

@ -683,7 +683,7 @@ SBTarget::BreakpointCreateBySourceRegex (const char *source_regex, const lldb::S
char path[PATH_MAX];
source_file->GetPath (path, sizeof(path));
log->Printf ("SBTarget(%p)::BreakpointCreateByRegex (source_regex=\"%s\", file=\"%s\", module_name=\"%s\") => SBBreakpoint(%p)",
m_opaque_sp.get(), source_regex, path, sb_bp.get());
m_opaque_sp.get(), source_regex, path, module_name, sb_bp.get());
}
return sb_bp;