You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print"$icc lines read\n"if ($icc % 10000 == 0) if ($debug);
Either of print "$icc lines read\n" if ($icc % 10000 == 0 && $debug);
or do {print "$icc lines read\n" if ($icc % 10000 == 0)} if ($debug);
should work better.
The text was updated successfully, but these errors were encountered:
A perl syntax error was recently introduced in filtnorm_filter here:
ricopili/rp_bin/filtnorm_filter
Line 147 in 757fb9d
Either of
print "$icc lines read\n" if ($icc % 10000 == 0 && $debug);
or
do {print "$icc lines read\n" if ($icc % 10000 == 0)} if ($debug);
should work better.
The text was updated successfully, but these errors were encountered: