Subject: | not -w clean |
This warning is displayed when the module is used under -w:
Use of uninitialized value in integer gt (>) at /Library/Perl/Text/TabularDisplay.pm line 242.
Patch:
@@ -240,7 +240,7 @@
push @data, $add->[$i];
$length->[$i] = $l
- unless $length->[$i] > $l;
+ unless $length->[$i] && $length->[$i] > $l;
}
push @$where, \@data;
}