clang: do not break string literals
The community decided to allow string literals to go past the 80 char
limit. Update the clang file used by state-manager and change a few of
the strings to take advantage of this new setting.
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I77dec79937fb71a43b10369846be47768c168856
diff --git a/host_check.cpp b/host_check.cpp
index 389c5e6..a4f8e0d 100644
--- a/host_check.cpp
+++ b/host_check.cpp
@@ -63,9 +63,9 @@
}
catch (const sdbusplus::exception::exception& e)
{
- error("Error in mapper GetSubTree call for HostFirmware condition: "
- "{ERROR}",
- "ERROR", e);
+ error(
+ "Error in mapper GetSubTree call for HostFirmware condition: {ERROR}",
+ "ERROR", e);
throw;
}