Commit fafd8c22 by Alan Mishchenko

Experiments with memory abstraction.

parent 82eead08
......@@ -50,7 +50,7 @@ char * Wln_ConstFromBits( int * pBits, int nBits )
sprintf( pBuffer, "%d\'b", nBits );
Len = strlen(pBuffer);
for ( i = nBits-1; i >= 0; i-- )
pBuffer[Len++] = '0' + Abc_InfoHasBit(pBits, i);
pBuffer[Len++] = '0' + Abc_InfoHasBit((unsigned *)pBits, i);
pBuffer[Len] = 0;
return pBuffer;
}
......
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