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

Commit 6ddf9683 authored by Yifan Hong's avatar Yifan Hong
Browse files

liblp: fix error message

Test: pass
Change-Id: I5a969c3fbabd8f32ea785a6196225e655205245b
parent 7d3f0066
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -537,7 +537,7 @@ bool MetadataBuilder::ValidatePartitionSizeChange(Partition* partition, uint64_t
            group->maximum_size() - group_size < space_needed) {
            LERROR << "Partition " << partition->name() << " is part of group " << group->name()
                   << " which does not have enough space free (" << space_needed << " requested, "
                   << group_size << " used out of " << group->maximum_size();
                   << group_size << " used out of " << group->maximum_size() << ")";
            return false;
        }
    }