From 2b67f0b85b49afcdc67438745692fff7646d4ec0 Mon Sep 17 00:00:00 2001 From: Pawin Vongmasa Date: Tue, 10 Jul 2018 16:46:44 -0700 Subject: [PATCH] Fix build breakage on non-linux Bug: 79173901 Test: liblp_test gtest Change-Id: I846e99f636ed05f97e44d05a617dc17b5f127d2e --- fs_mgr/liblp/builder.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs_mgr/liblp/builder.cpp b/fs_mgr/liblp/builder.cpp index 421f4e6ba..720590dfa 100644 --- a/fs_mgr/liblp/builder.cpp +++ b/fs_mgr/liblp/builder.cpp @@ -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