diff options
-rw-r--r-- | src/map/scl/sclLibScl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/scl/sclLibScl.c b/src/map/scl/sclLibScl.c index dbf50627..9be525e1 100644 --- a/src/map/scl/sclLibScl.c +++ b/src/map/scl/sclLibScl.c @@ -407,7 +407,7 @@ static void Abc_SclWriteLibrary( Vec_Str_t * vOut, SC_Lib * p ) Vec_StrPutI( vOut, pCell->n_inputs ); // write function - Vec_StrPutS( vOut, pPin->func_text ? pPin->func_text : "" ); + Vec_StrPutS( vOut, pPin->func_text ? pPin->func_text : (char *)"" ); // write truth table assert( Vec_WrdSize(pPin->vFunc) == Abc_Truth6WordNum(pCell->n_inputs) ); |