summaryrefslogtreecommitdiffstats
path: root/src/misc/extra/extraUtilMisc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-02-18 18:41:26 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2015-02-18 18:41:26 -0800
commit5ad773eda10692ee1877a04561ef51c06713f519 (patch)
tree6dc30bcef6e83e236b8d575645b394bd2e33434a /src/misc/extra/extraUtilMisc.c
parent874d394089932a50cc3d9797018f2c398e74444e (diff)
downloadabc-5ad773eda10692ee1877a04561ef51c06713f519.tar.gz
abc-5ad773eda10692ee1877a04561ef51c06713f519.tar.bz2
abc-5ad773eda10692ee1877a04561ef51c06713f519.zip
Changing semantics of switch -C in 'sop' to limit cubes at one node.
Diffstat (limited to 'src/misc/extra/extraUtilMisc.c')
-rw-r--r--src/misc/extra/extraUtilMisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/extra/extraUtilMisc.c b/src/misc/extra/extraUtilMisc.c
index 479045f9..b4ba7940 100644
--- a/src/misc/extra/extraUtilMisc.c
+++ b/src/misc/extra/extraUtilMisc.c
@@ -2547,7 +2547,7 @@ void Extra_NtkPrintBin( word * pT, int nBits )
{
int i;
for ( i = nBits - 1; i >= 0; i-- )
- printf( "%d", (*pT >> (word)i) & 1 );
+ printf( "%d", (int)((*pT >> i) & 1) );
}
void Extra_NtkPowerTest()
{