Merge "Fix build breakage on non-linux"

This commit is contained in:
Treehugger Robot 2018-07-11 01:43:24 +00:00 committed by Gerrit Code Review
commit 348878391a

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