summaryrefslogtreecommitdiffstats
path: root/elog_entry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'elog_entry.cpp')
-rw-r--r--elog_entry.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/elog_entry.cpp b/elog_entry.cpp
index 74fcc4b..04aa917 100644
--- a/elog_entry.cpp
+++ b/elog_entry.cpp
@@ -1,6 +1,7 @@
#include "elog_entry.hpp"
-#include "log_manager.hpp"
+
#include "elog_serialize.hpp"
+#include "log_manager.hpp"
namespace phosphor
{
@@ -16,15 +17,14 @@ void Entry::delete_()
bool Entry::resolved(bool value)
{
- auto current = sdbusplus::xyz::openbmc_project::
- Logging::server::Entry::resolved();
+ auto current =
+ sdbusplus::xyz::openbmc_project::Logging::server::Entry::resolved();
if (value != current)
{
- value ?
- associations({}) :
- associations(assocs);
- current = sdbusplus::xyz::openbmc_project::
- Logging::server::Entry::resolved(value);
+ value ? associations({}) : associations(assocs);
+ current =
+ sdbusplus::xyz::openbmc_project::Logging::server::Entry::resolved(
+ value);
serialize(*this);
}
@@ -32,4 +32,4 @@ bool Entry::resolved(bool value)
}
} // namespace logging
-} // namepsace phosphor
+} // namespace phosphor
OpenPOWER on IntegriCloud