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

Commit 8968ee3e authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "libdm: GetDmDevicePathByName log warning" am: e36f911a

am: 2c6578f4

Change-Id: I00a75200e63b587a107a78ee2c74f58d0541e2fa
parents 18d02604 2c6578f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -278,7 +278,7 @@ bool DeviceMapper::GetDmDevicePathByName(const std::string& name, std::string* p
    struct dm_ioctl io;
    InitIo(&io, name);
    if (ioctl(fd_, DM_DEV_STATUS, &io) < 0) {
        PLOG(ERROR) << "DM_DEV_STATUS failed for " << name;
        PLOG(WARNING) << "DM_DEV_STATUS failed for " << name;
        return false;
    }