From 7522e68b58167b225a81becc59bd4decc6602de7 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 25 Jun 2018 14:01:31 -0700 Subject: Bug fix by Horus Nero. --- src/opt/sim/simMan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/opt/sim/simMan.c b/src/opt/sim/simMan.c index ecee0424..b3f99f89 100644 --- a/src/opt/sim/simMan.c +++ b/src/opt/sim/simMan.c @@ -80,7 +80,7 @@ Sym_Man_t * Sym_ManStart( Abc_Ntk_t * pNtk, int fVerbose ) for ( i = 0; i < p->nOutputs; i++ ) for ( v = 0; v < p->nInputs; v++ ) if ( Sim_SuppFunHasVar( p->vSuppFun, i, v ) ) - Vec_VecPush( p->vSupports, i, (void *)(ABC_PTRUINT_T)v ); + Vec_VecPushInt( p->vSupports, i, v ); return p; } -- cgit v1.2.3