Merge "Fix build breakage on non-linux" am: 348878391a

am: 7a865669b6

Change-Id: Ia58d4c071739b3728599d915bcc001f7be1f4194
This commit is contained in:
Pawin Vongmasa 2018-07-10 19:38:59 -07:00 committed by android-build-merger
commit a7ab5d0533

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