diff options
Diffstat (limited to 'source/Core/Address.cpp')
-rw-r--r-- | source/Core/Address.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Core/Address.cpp b/source/Core/Address.cpp index 5ac2bcc..fa9197d 100644 --- a/source/Core/Address.cpp +++ b/source/Core/Address.cpp @@ -427,7 +427,7 @@ Address::Dump (Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, Dum break; case DumpStyleSectionPointerOffset: - s->Printf("(Section *)%p + ", section_sp.get()); + s->Printf("(Section *)%p + ", static_cast<void*>(section_sp.get())); s->Address(m_offset, addr_size); break; |