[PATCH] syslet engine: use pread instead lseek+read
[fio.git] / init.c
diff --git a/init.c b/init.c
index f4125b13c5f05c1064d07d5e12bf72d5295a034e..f4a37401ec0b507eef3cc04252db1669be66457d 100644 (file)
--- a/init.c
+++ b/init.c
@@ -639,7 +639,7 @@ static void fixup_options(struct thread_data *td)
 static char *to_kmg(unsigned int val)
 {
        char *buf = malloc(32);
-       char post[] = { 0, 'K', 'M', 'G', 'P', 0 };
+       char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
        char *p = post;
 
        do {