Unverified Commit 2acf6f49 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

fix another 'negative repeat count' warning

parent 2cafb935
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -99,9 +99,8 @@ for my $section ( $wr->sections ) {
	}

	printf( "▏%s%s%s▕",
		' ' x $spacing_left,
		$section->name,
		' ' x $spacing_right );
		( $spacing_left >= 0 )                  ? ' ' x $spacing_left  : q{},
		$section->name, ( $spacing_right >= 0 ) ? ' ' x $spacing_right : q{} );
}
print "\n";