Commit b2bd941a by Alan Mishchenko

Unifification of custom extensions.

parent 5a8f8b8a
...@@ -119,7 +119,7 @@ Vec_Str_t * Gia_WriteEquivClasses( Gia_Man_t * p ) ...@@ -119,7 +119,7 @@ Vec_Str_t * Gia_WriteEquivClasses( Gia_Man_t * p )
{ {
int nEquivSize; int nEquivSize;
unsigned char * pBuffer = Gia_WriteEquivClassesInt( p, &nEquivSize ); unsigned char * pBuffer = Gia_WriteEquivClassesInt( p, &nEquivSize );
return Vec_StrAllocArray( pBuffer, nEquivSize ); return Vec_StrAllocArray( (char *)pBuffer, nEquivSize );
} }
/**Function************************************************************* /**Function*************************************************************
...@@ -202,7 +202,7 @@ Vec_Str_t * Gia_AigerWriteMapping( Gia_Man_t * p ) ...@@ -202,7 +202,7 @@ Vec_Str_t * Gia_AigerWriteMapping( Gia_Man_t * p )
{ {
int nMapSize; int nMapSize;
unsigned char * pBuffer = Gia_AigerWriteMappingInt( p, &nMapSize ); unsigned char * pBuffer = Gia_AigerWriteMappingInt( p, &nMapSize );
return Vec_StrAllocArray( pBuffer, nMapSize ); return Vec_StrAllocArray( (char *)pBuffer, nMapSize );
} }
/**Function************************************************************* /**Function*************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment