mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +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.
|
||||
|
||||
sub emitNodes($$) {
|
||||
my ( $gNBytesPerOutfile, $outFileBase ) = @_;
|
||||
my ( $nBytesPerOutfile, $outFileBase ) = @_;
|
||||
|
||||
# now do the emit.
|
||||
|
||||
|
@ -643,7 +643,7 @@ sub emitNodes($$) {
|
|||
}
|
||||
++$i; # move beyond the terminal
|
||||
my $nextSize = ($i - $nextIndex) * $gNBytesPerNode;
|
||||
if ($curSize + $nextSize > $gNBytesPerOutfile) {
|
||||
if ($curSize + $nextSize > $nBytesPerOutfile) {
|
||||
last;
|
||||
} else {
|
||||
# emit the subarray
|
||||
|
|
Loading…
Reference in a new issue