Internals: Fix clang warning, bug791.
This commit is contained in:
parent
8031f0ed7f
commit
894ff73c7d
|
|
@ -567,7 +567,7 @@ const char* V3OutFormatter::indentStr(int num) {
|
|||
static char str[MAXSPACE+20];
|
||||
char* cp = str;
|
||||
if (num>MAXSPACE) num=MAXSPACE;
|
||||
if (!m_lang==LA_VERILOG) { // verilogPrefixedTree doesn't want tabs
|
||||
if (m_lang!=LA_VERILOG) { // verilogPrefixedTree doesn't want tabs
|
||||
while (num>=8) {
|
||||
*cp++ = '\t';
|
||||
num -= 8;
|
||||
|
|
|
|||
Loading…
Reference in New Issue