1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Use correct print format specifier.

This commit is contained in:
Bartosz Taudul 2020-04-14 02:03:19 +02:00
parent dd0fb49098
commit 55f582faaf

View File

@ -394,7 +394,7 @@ void SourceView::RenderSymbolView( const Worker& worker )
else
{
char tmp[16];
sprintf( tmp, "0x%x", m_baseAddr );
sprintf( tmp, "0x%" PRIx64, m_baseAddr );
TextFocused( ICON_FA_PUZZLE_PIECE " Symbol:", tmp );
}
}