mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-22 14:55:55 +02: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:
parent
c247df9701
commit
4c81717cca
@ -25,7 +25,7 @@ sub rewrite
|
||||
if ($1 == $in_lib) {
|
||||
$in_lib++;
|
||||
} 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;
|
||||
}
|
||||
$out_lib++;
|
||||
|
Loading…
Reference in New Issue
Block a user