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

Commit 0006b4de authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Gerrit Code Review
Browse files

Merge "fs_mgr: liblp: add additional debugging details"

parents a988b4d9 a2af0dec
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -94,7 +94,8 @@ static bool ValidateAndSerializeMetadata(int fd, const LpMetadata& metadata, std
    }
    // Make sure we're writing within the space reserved.
    if (blob->size() > geometry.metadata_max_size) {
        LERROR << "Logical partition metadata is too large.";
        LERROR << "Logical partition metadata is too large. " << blob->size() << " > "
               << geometry.metadata_max_size;
        return false;
    }