Be consistent about "kilo" versus "kibi".
I'm a binary man myself, but we've mostly used decimal so far, and wider
Android is mostly decimal, so...
Change-Id: Ibef78f61176569e0023a7f43196a3969c7fe794b
diff --git a/src/hprof/hprof.cc b/src/hprof/hprof.cc
index 532eada..ce3050e 100644
--- a/src/hprof/hprof.cc
+++ b/src/hprof/hprof.cc
@@ -593,7 +593,7 @@
}
// throw out a log message for the benefit of "runhat"
- LOG(INFO) << "hprof: heap dump completed (" << ((headCtx.file_data_size_ + file_data_size_ + 1023) / KB) << "KiB)";
+ LOG(INFO) << "hprof: heap dump completed (" << PrettySize(headCtx.file_data_size_ + file_data_size_ + 1023) << ")";
return true;
}