fix var name

This commit is contained in:
ehouse 2004-05-12 05:35:12 +00:00
parent f2c322b1f6
commit 608b0ea4e8

View file

@ -590,7 +590,7 @@ sub makeTableHash {
# error. # error.
sub emitNodes($$) { sub emitNodes($$) {
my ( $gNBytesPerOutfile, $outFileBase ) = @_; my ( $nBytesPerOutfile, $outFileBase ) = @_;
# now do the emit. # now do the emit.
@ -643,7 +643,7 @@ sub emitNodes($$) {
} }
++$i; # move beyond the terminal ++$i; # move beyond the terminal
my $nextSize = ($i - $nextIndex) * $gNBytesPerNode; my $nextSize = ($i - $nextIndex) * $gNBytesPerNode;
if ($curSize + $nextSize > $gNBytesPerOutfile) { if ($curSize + $nextSize > $nBytesPerOutfile) {
last; last;
} else { } else {
# emit the subarray # emit the subarray