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

No need for more than one space between mnemonic and operands.

This commit is contained in:
Bartosz Taudul
2022-09-24 00:39:04 +02:00
parent da58c1f55e
commit e7184565b3
+1 -1
View File
@@ -946,7 +946,7 @@ bool SourceView::Disassemble( uint64_t symAddr, const Worker& worker )
m_maxLine = strlen( tmp ) + 1; m_maxLine = strlen( tmp ) + 1;
} }
cs_free( insn, cnt ); cs_free( insn, cnt );
m_maxMnemonicLen = mLenMax + 2; m_maxMnemonicLen = mLenMax + 1;
m_maxAsmBytes = bytesMax; m_maxAsmBytes = bytesMax;
if( !m_jumpTable.empty() ) if( !m_jumpTable.empty() )
{ {