Merge "fs_mgr: Fix ZRAM error when ZRAM disk size beyond (2^31-1) bytes" am: 28c11dcff4 am: 6a75b73c36

am: 40d4ad9cdf

Change-Id: Ia93c8fd9fd4b799ec253241e0571077006ded21b
This commit is contained in:
Jinguang Dong 2017-06-01 17:43:38 +00:00 committed by android-build-merger
commit 1123da7a42
1 changed files with 1 additions and 1 deletions

View File

@ -1195,7 +1195,7 @@ int fs_mgr_swapon_all(struct fstab *fstab)
ret = -1;
continue;
}
fprintf(zram_fp, "%d\n", fstab->recs[i].zram_size);
fprintf(zram_fp, "%u\n", fstab->recs[i].zram_size);
fclose(zram_fp);
}