diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-09-21 06:45:51 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-09-21 06:45:51 +0000 |
| commit | c1ef10f99e4d539b90be79c90b63f21d362a3fa4 (patch) | |
| tree | f9d02432d140f5bc0c79854b1c2fc07a197862c5 /lldb/source/API/SBTarget.cpp | |
| parent | 5ce7f109cf91bd8237a73a68a487aae578078261 (diff) | |
| download | bcm5719-llvm-c1ef10f99e4d539b90be79c90b63f21d362a3fa4.tar.gz bcm5719-llvm-c1ef10f99e4d539b90be79c90b63f21d362a3fa4.zip | |
Fixed two printf format errors.
llvm-svn: 140239
Diffstat (limited to 'lldb/source/API/SBTarget.cpp')
| -rw-r--r-- | lldb/source/API/SBTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index 4e0dac4e907..e3743e5ab51 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -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; |

