kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #24972
[PATCH 1/2] Avoid pointer truncation in debug message
---
common/gal/opengl/cached_container.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/gal/opengl/cached_container.cpp b/common/gal/opengl/cached_container.cpp
index 40d4969..2029929 100644
--- a/common/gal/opengl/cached_container.cpp
+++ b/common/gal/opengl/cached_container.cpp
@@ -272,7 +272,7 @@ bool CACHED_CONTAINER::reallocate( unsigned int aSize )
unsigned int itemSize = m_item->GetSize();
#if CACHED_CONTAINER_TEST > 2
- wxLogDebug( wxT( "Resize 0x%08lx from %d to %d" ), (long) m_item, itemSize, aSize );
+ wxLogDebug( wxT( "Resize %p from %d to %d" ), m_item, itemSize, aSize );
#endif
// Is there enough space to store vertices?
@@ -651,8 +651,8 @@ void CACHED_CONTAINER::showUsedChunks()
unsigned int size = item->GetSize();
assert( size > 0 );
- wxLogDebug( wxT( "[0x%08x-0x%08x] @ 0x%08lx (size %d)" ),
- offset, offset + size - 1, (long) item, size );
+ wxLogDebug( wxT( "[0x%08x-0x%08x] @ 0x%p (size %d)" ),
+ offset, offset + size - 1, item, size );
}
#endif /* __WXDEBUG__ */
}
Follow ups