[PATCH] Exabytes

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/stat.c b/stat.c
index bfdf390..f9c6985 100644
--- a/stat.c
+++ b/stat.c
@@ -22,7 +22,7 @@
 	 * 2^10 base right now.
 	 */
 	const unsigned int thousand = 1024;
-	char postfix[] = { 'K', 'M', 'G', 'P' };
+	char postfix[] = { 'K', 'M', 'G', 'P', 'E' };
 	char *buf;
 	int i;
 
@@ -47,7 +47,7 @@
 		num /= thousand;
 		num += carry;
 		i++;
-	} while (i <= 4);
+	} while (i <= 5);
 
 	return buf;
 }