libpldm: Correct reference to libpldm header files
When relying on header files from external libraries, #include<> should
be used instead of #include "" to avoid ambiguity.
Tested: Built pldm successfully after enabling ibm-oem
Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: Ia1997de7e0f61564055bbd837f4e24c8f14e55a5
diff --git a/libpldmresponder/bios_attribute.hpp b/libpldmresponder/bios_attribute.hpp
index 70a11d3..46c34cd 100644
--- a/libpldmresponder/bios_attribute.hpp
+++ b/libpldmresponder/bios_attribute.hpp
@@ -1,10 +1,10 @@
#pragma once
-#include "libpldm/bios_table.h"
-
#include "bios_table.hpp"
#include "common/utils.hpp"
+#include <libpldm/bios_table.h>
+
#include <nlohmann/json.hpp>
#include <cstdint>