Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28c11dcf authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "fs_mgr: Fix ZRAM error when ZRAM disk size beyond (2^31-1) bytes"

parents 63c15c1b f7d10147
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
        }