From 324a1036194f95385b26c941bc82cc6dadf50ac7 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 4 Apr 2014 04:06:10 +0000 Subject: sweep up -Wformat warnings from gcc This is a purely mechanical change explicitly casting any parameters for printf style conversion. This cleans up the warnings emitted by gcc 4.8 on Linux. llvm-svn: 205607 --- lldb/source/API/SBFileSpecList.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lldb/source/API/SBFileSpecList.cpp') diff --git a/lldb/source/API/SBFileSpecList.cpp b/lldb/source/API/SBFileSpecList.cpp index 3ebf3cc80a2..a457a754f0d 100644 --- a/lldb/source/API/SBFileSpecList.cpp +++ b/lldb/source/API/SBFileSpecList.cpp @@ -38,7 +38,8 @@ SBFileSpecList::SBFileSpecList (const SBFileSpecList &rhs) : if (log) { log->Printf ("SBFileSpecList::SBFileSpecList (const SBFileSpecList rhs.ap=%p) => SBFileSpecList(%p)", - rhs.m_opaque_ap.get(), m_opaque_ap.get()); + static_cast(rhs.m_opaque_ap.get()), + static_cast(m_opaque_ap.get())); } } -- cgit v1.2.3