Index: deprecated.php
===================================================================
--- deprecated.php	(revision 37650)
+++ deprecated.php	(working copy)
@@ -1,3 +1,4 @@
+
 <?php
 /**
  * Deprecated functions from past WordPress versions. You shouldn't use these
@@ -3329,7 +3330,7 @@
 function wp_convert_bytes_to_hr( $bytes ) {
 	_deprecated_function( __FUNCTION__, '3.6', 'size_format()' );
 
-	$units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB', 4 => 'TB' );
+	$units = array( 0 => 'B', 1 => 'KB', 2 => 'MB', 3 => 'GB', 4 => 'TB' );
 	$log   = log( $bytes, KB_IN_BYTES );
 	$power = (int) $log;
 	$size  = pow( KB_IN_BYTES, $log - $power );
