read_sdf -path

This commit is contained in:
James Cherry 2020-01-16 19:49:43 -07:00
parent 55c63b042c
commit 679b5d7117
1 changed files with 1 additions and 1 deletions

View File

@ -1045,7 +1045,7 @@ SdfReader::findPin(const char *name)
{
if (path_) {
string path_name;
stringPrint(path_name, path_, divider_, name);
stringPrint(path_name, "%s%c%s", path_, divider_, name);
Pin *pin = network_->findPin(path_name.c_str());
return pin;
}