mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-04-21 12:27:27 +03:00
Corrected the renumbering warning in sanitize-profile.
- schhist/sanitize-profile: used a non-existing variable and thus didn't print the expected entry when renumbering - schhist/sanitize-profile: the message when renumbering had no newline
This commit is contained in:
@@ -25,7 +25,7 @@ sub rewrite
|
|||||||
if ($1 == $in_lib) {
|
if ($1 == $in_lib) {
|
||||||
$in_lib++;
|
$in_lib++;
|
||||||
} else {
|
} else {
|
||||||
print STDERR "LibName$1 when expecting $next_lib. Renumbering.";
|
print STDERR "LibName$1 when expecting LibName$in_lib. Renumbering.\n";
|
||||||
$in_lib = $1+1;
|
$in_lib = $1+1;
|
||||||
}
|
}
|
||||||
$out_lib++;
|
$out_lib++;
|
||||||
|
|||||||
Reference in New Issue
Block a user