From 60df705d61a2329a195ad3005d30ae263c2cea54 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 11 Jul 2014 22:32:21 -0400 Subject: write_fbcon(): Remove superfluous "my" --- diff --git a/bin/bdf2fbcon b/bin/bdf2fbcon index bd61b28..d995d9b 100755 --- a/bin/bdf2fbcon +++ b/bin/bdf2fbcon @@ -320,7 +320,7 @@ sub write_fbcon printf($output_fh "\t"); $shifted_bitmap = $bitmap; $shifted_bitmap <<= $bytes_x * 8 - $font->{'width'}; - for (my $k = ($bytes_x - 1) * 8; $k >= 0; $k -= 8) { + for ($k = ($bytes_x - 1) * 8; $k >= 0; $k -= 8) { printf("0x%02x, ", ($shifted_bitmap >> $k) & 0xFF); } -- cgit v0.9.1