diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-10-11 18:14:03 +0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-10-11 18:14:03 +0700 |
commit | 1e1d41f3b8d7e52659e6d9f9cbe4b26c0da71a50 (patch) | |
tree | 8764dd7507d58afeb89d14cd570f94482f571d2b /src/map/scl | |
parent | 222d7c7a9283c897cc4396a8acc18cbda5d2a909 (diff) | |
download | abc-1e1d41f3b8d7e52659e6d9f9cbe4b26c0da71a50.tar.gz abc-1e1d41f3b8d7e52659e6d9f9cbe4b26c0da71a50.tar.bz2 abc-1e1d41f3b8d7e52659e6d9f9cbe4b26c0da71a50.zip |
Fix typo on the message reporting max output load.
Diffstat (limited to 'src/map/scl')
-rw-r--r-- | src/map/scl/sclUtil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/scl/sclUtil.c b/src/map/scl/sclUtil.c index 07e0deb6..0deb0f0f 100644 --- a/src/map/scl/sclUtil.c +++ b/src/map/scl/sclUtil.c @@ -266,7 +266,7 @@ void Abc_SclReadTimingConstr( Abc_Frame_t * pAbc, char * pFileName, int fVerbose { Abc_FrameSetMaxLoad( atof(strtok(NULL, " \t\r\n")) ); if ( fVerbose ) - printf( "Setting driving cell to be %f.\n", Abc_FrameReadMaxLoad() ); + printf( "Setting output load to be %f.\n", Abc_FrameReadMaxLoad() ); } else printf( "Unrecognized token \"%s\".\n", pToken ); } |