Merge "Fix build breakage on non-linux"

am: 348878391a

Change-Id: I2de8147849bb26aba91976046affd53201dc8f1f
This commit is contained in:
Pawin Vongmasa 2018-07-10 18:59:32 -07:00 committed by android-build-merger
commit 7a865669b6

View file

@ -54,6 +54,8 @@ bool GetBlockDeviceInfo(const std::string& block_device, BlockDeviceInfo* device
}
return true;
#else
(void)block_device;
(void)device_info;
LERROR << __PRETTY_FUNCTION__ << ": Not supported on this operating system.";
return false;
#endif