Fix build for hardware with one ethernet interface
We have a custom `writefru.yaml` without ETHERNET1 node
as our hardware has only one ethernet interface.
And this leads to a failure during the build.
This commit prevents a warning about unused arguments which interprets
as an error.
Change-Id: If4925a46ff33db5504ce7fd45bc36b0da30c44e6
Signed-off-by: Alexander Filippov <a.filippov@yadro.com>
diff --git a/writefru.mako.hpp b/writefru.mako.hpp
index b2890ea..203d033 100755
--- a/writefru.mako.hpp
+++ b/writefru.mako.hpp
@@ -28,7 +28,7 @@
* @param [in] path - FRU object path
*/
template<Fru F>
-void writeFru(const Store& vpdStore, const std::string& path) {
+void writeFru(const Store& /*vpdStore*/, const std::string& /*path*/) {
throw std::runtime_error("Not implemented");
}