Internals: Fix clang warning, bug791.

This commit is contained in:
Wilson Snyder 2014-06-19 18:02:42 -04:00
parent 8031f0ed7f
commit 894ff73c7d
1 changed files with 1 additions and 1 deletions

View File

@ -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;