diff options
Diffstat (limited to 'src/opt/rwr/rwrTemp.c')
-rw-r--r-- | src/opt/rwr/rwrTemp.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/opt/rwr/rwrTemp.c b/src/opt/rwr/rwrTemp.c index 3ffbd408..6a670c3a 100644 --- a/src/opt/rwr/rwrTemp.c +++ b/src/opt/rwr/rwrTemp.c @@ -20,6 +20,9 @@ #include "rwr.h" +ABC_NAMESPACE_IMPL_START + + //////////////////////////////////////////////////////////////////////// /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// @@ -106,7 +109,7 @@ void Rwr_Temp() for ( k = 0; k < 32; k++ ) if ( uTruth & (1 << k) ) { - Extra_PrintBinary( pFile, &k, 5 ); + Extra_PrintBinary( pFile, (unsigned *)&k, 5 ); fprintf( pFile, " 1\n" ); } } @@ -119,3 +122,5 @@ void Rwr_Temp() //////////////////////////////////////////////////////////////////////// +ABC_NAMESPACE_IMPL_END + |