mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
fix var name
This commit is contained in:
parent
f2c322b1f6
commit
608b0ea4e8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue