Fix space issue

This commit is contained in:
Cary R 2013-10-22 09:47:12 -07:00
parent 97d06b107f
commit d7c2118d10
1 changed files with 1 additions and 1 deletions

View File

@ -4280,7 +4280,7 @@ NetProc* PEventStatement::elaborate_wait_fork(Design*des, NetScope*scope) const
NetProc* PEventStatement::elaborate(Design*des, NetScope*scope) const
{
/* Check to see if this is a wait fork statement. */
if ((expr_.count() == 1) && (expr_[0] == 0))
if ((expr_.count() == 1) && (expr_[0] == 0))
return elaborate_wait_fork(des, scope);
NetProc*enet = 0;