Commit 6642e40a by Alan Mishchenko

Corner-case bug in 'read_profile'.

parent 68bc46be
......@@ -1377,7 +1377,7 @@ void Mio_LibraryReadProfile( FILE * pFile, Mio_Library_t * pLib )
pGate = Mio_LibraryReadGateByName( pLib, pToken, NULL );
if ( pGate == NULL )
{
printf( "Cannot find gate \"%s\" in library \"%s\".\n", Mio_GateReadName(pGate), Mio_LibraryReadName(pLib) );
printf( "Cannot find gate \"%s\" in library \"%s\".\n", pToken, Mio_LibraryReadName(pLib) );
continue;
}
// read profile
......
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