From: miker Date: Sat, 21 Apr 2007 02:04:38 +0000 (+0000) Subject: remove some useless warnings; add the system id to 901$c X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4ee2ca0b4b547837373bfcb377d45de71f3f5ca8;p=Evergreen.git remove some useless warnings; add the system id to 901$c git-svn-id: svn://svn.open-ils.org/ILS/trunk@7156 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/support-scripts/marc_export b/Open-ILS/src/support-scripts/marc_export index 22cb3c8d56..5d19212bcc 100755 --- a/Open-ILS/src/support-scripts/marc_export +++ b/Open-ILS/src/support-scripts/marc_export @@ -152,7 +152,8 @@ while ( my $i = <> ) { MARC::Field->new( 901, '', '', a => $bib->tcn_value, - b => $bib->tcn_source + b => $bib->tcn_source, + c => $bib->id ) ); @@ -233,6 +234,8 @@ DONE sub stats { try { + no warnings; + $speed = $count{did} / (time - $start); my $speed_now = ($count{did} - $count{did_last}) / (time - $count{time_last});