diff options
Diffstat (limited to 'lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp')
-rw-r--r-- | lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp b/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp index 257996a74b4..34467033fe0 100644 --- a/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp +++ b/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp @@ -776,9 +776,8 @@ PlatformPOSIX::Attach (ProcessAttachInfo &attach_info, if (log) { ModuleSP exe_module_sp = target->GetExecutableModule (); - log->Printf ("PlatformPOSIX::%s set selected target to %p %s", __FUNCTION__, - target, - exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str () : "<null>" ); + log->Printf("PlatformPOSIX::%s set selected target to %p %s", __FUNCTION__, (void *)target, + exe_module_sp ? exe_module_sp->GetFileSpec().GetPath().c_str() : "<null>"); } |