Index: contrib/tools/font/bdf2c.pl
===================================================================
--- contrib/tools/font/bdf2c.pl	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ contrib/tools/font/bdf2c.pl	(revision d5e5fd1214ee9617b9a936d6f09efec4c9a91b48)
@@ -53,5 +53,5 @@
 	/^FONTBOUNDINGBOX\s/ and do {
 		($skip, $width, $height, $offset_x, $offset_y) = (split);
-		
+
 		die("Font width is not 8px\n") if ($width != 8);
 		die("Font height is not 16px\n") if ($height != 16);
@@ -70,12 +70,12 @@
 		my @glyph = ();
 		my $y;
-		
+
 		# Add empty lines at top
 		my $empties = $height + $offset_y - $goffset_y - $gheight;
-		
+
 		for ($y = 0; $y < $empties; $y++) {
 			$glyph[$y] = 0;
 		}
-		
+
 		# Scan the hex bitmap
 		for ($y = $empties; $y < $empties + $gheight; $y++) {
@@ -83,5 +83,5 @@
 			$glyph[$y] = hex(substr($_, 0, 2)) >> $goffset_x;
 		}
-		
+
 		# Add empty lines at bottom
 		my $fill = $height - $gheight - $empties;
@@ -89,5 +89,5 @@
 			$glyph[$y] = 0;
 		}
-		
+
 		if ($index != 0) {
 			$glyphs[$index] = (\@glyph);
@@ -125,12 +125,12 @@
 				print "\t\treturn (ch - " . ($start - $start_pos) . ");\n";
 			}
-			
+
 			print "\t\n";
 		}
-		
+
 		$start = $index;
 		$start_pos = $pos;
 	}
-	
+
 	$pos++;
 	$prev = $index;
@@ -145,5 +145,5 @@
 for $index (@chars) {
 	print "\n\t{";
-	
+
 	my $y;
 	for ($y = 0; $y < $height; $y++) {
@@ -151,5 +151,5 @@
 		printf "0x%.2x", $glyphs[$index]->[$y];
 	}
-	
+
 	print "},";
 }
