Merge "Report actual disk space used" into jb-mr2-dev

This commit is contained in:
Marco Nelissen 2013-05-05 01:17:48 +00:00 committed by Android (Google) Code Review
commit 3d3cc6e15e
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,8 @@
int64_t stat_size(struct stat *s)
{
int64_t blksize = s->st_blksize;
int64_t size = s->st_size;
// count actual blocks used instead of nominal file size
int64_t size = s->st_blocks * 512;
if (blksize) {
/* round up to filesystem block size */