1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 02:39:49 +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:
Werner Almesberger 2010-10-03 22:15:43 -03:00
parent c247df9701
commit 4c81717cca

View File

@ -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++;