summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2013-09-03 21:39:53 +0200
committerDaniel Friesel <derf@finalrewind.org>2013-09-03 21:39:53 +0200
commitc9ea03bdcd44963dce99dbc7a70e6a030fb4e026 (patch)
treeb68bcabbbe90828bdcb31d5371360f9f3bb97bd7
parent295eb7553ae682bc03cdbf14b2c6dca0870f3cbe (diff)
fix emptyline buffer off by one
-rw-r--r--cgi/index.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/index.pl b/cgi/index.pl
index 7c8db0b..0aa3e17 100644
--- a/cgi/index.pl
+++ b/cgi/index.pl
@@ -253,7 +253,7 @@ sub get_departures {
}
if ( not $want_crop ) {
- while ( ++$displayed_lines < $no_lines ) {
+ while ( $displayed_lines++ < $no_lines ) {
push( @fmt_departures, [ (q{}) x 3 ] );
}
}