summaryrefslogtreecommitdiffstats
path: root/src/map/scl
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-07-29 19:14:34 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-07-29 19:14:34 -0700
commitb93ead2ad10bd25163f8599891b884c531b6d3bf (patch)
tree79f36cb897d48697593e3aa4deb9bb47bf1102fb /src/map/scl
parent675f2bbf2d0b9d9d2aca0018e440bacb66313c31 (diff)
downloadabc-b93ead2ad10bd25163f8599891b884c531b6d3bf.tar.gz
abc-b93ead2ad10bd25163f8599891b884c531b6d3bf.tar.bz2
abc-b93ead2ad10bd25163f8599891b884c531b6d3bf.zip
Compiler warning.
Diffstat (limited to 'src/map/scl')
-rw-r--r--src/map/scl/sclLib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/scl/sclLib.c b/src/map/scl/sclLib.c
index a1572095..099350c8 100644
--- a/src/map/scl/sclLib.c
+++ b/src/map/scl/sclLib.c
@@ -1158,7 +1158,7 @@ void Abc_SclDumpGenlib( char * pFileName, SC_Lib * p, float Slew, float Gain, in
void Mio_SclDeriveGenlib( void * pScl, float Slew, float Gain, int nGatesMin )
{
int nGateCount = 0;
- Vec_Str_t * vStr = Abc_SclDeriveGenlibStr( pScl, Slew, Gain, nGatesMin, &nGateCount );
+ Vec_Str_t * vStr = Abc_SclDeriveGenlibStr( (SC_Lib *)pScl, Slew, Gain, nGatesMin, &nGateCount );
Vec_Str_t * vStr2 = Vec_StrDup( vStr );
int RetValue = Mio_UpdateGenlib2( vStr, vStr2, ((SC_Lib *)pScl)->pName, 0 );
Vec_StrFree( vStr );