diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-07-28 17:17:32 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-07-28 17:17:32 -0700 |
commit | 7f7b7671b044b35583bd40eff2afba7e3b872ea3 (patch) | |
tree | e0b9d87c29dc6f332de28e6e25f93f0ced698ef9 /src/base/io | |
parent | 0806dd227ce57522de07d0a618bd7f3fe93da7fb (diff) | |
download | abc-7f7b7671b044b35583bd40eff2afba7e3b872ea3.tar.gz abc-7f7b7671b044b35583bd40eff2afba7e3b872ea3.tar.bz2 abc-7f7b7671b044b35583bd40eff2afba7e3b872ea3.zip |
Improvements to Cba data-structure.
Diffstat (limited to 'src/base/io')
-rw-r--r-- | src/base/io/ioReadPla.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/io/ioReadPla.c b/src/base/io/ioReadPla.c index 36302dcb..c6a9098a 100644 --- a/src/base/io/ioReadPla.c +++ b/src/base/io/ioReadPla.c @@ -500,14 +500,14 @@ Abc_Ntk_t * Io_ReadPlaNetwork( Extra_FileReader_t * p, int fZeros, int fBoth ) pCubeOut = (char *)vTokens->pArray[1]; if ( strlen(pCubeIn) != (unsigned)nInputs ) { - printf( "%s (line %d): Input cube length (%zu) differs from the number of inputs (%d).\n", + printf( "%s (line %d): Input cube length (%d) differs from the number of inputs (%d).\n", Extra_FileReaderGetFileName(p), iLine, strlen(pCubeIn), nInputs ); Abc_NtkDelete( pNtk ); return NULL; } if ( strlen(pCubeOut) != (unsigned)nOutputs ) { - printf( "%s (line %d): Output cube length (%zu) differs from the number of outputs (%d).\n", + printf( "%s (line %d): Output cube length (%d) differs from the number of outputs (%d).\n", Extra_FileReaderGetFileName(p), iLine, strlen(pCubeOut), nOutputs ); Abc_NtkDelete( pNtk ); Extra_ProgressBarStop( pProgress ); |