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_state_manager.cpp b/host_state_manager.cpp
index 4611e34..8df3840 100644
--- a/host_state_manager.cpp
+++ b/host_state_manager.cpp
@@ -234,9 +234,9 @@
if (rebootCounterParam > 0)
{
// Reduce BOOTCOUNT by 1
- info("Auto reboot enabled and boot count at {BOOTCOUNT}, "
- "rebooting",
- "BOOTCOUNT", rebootCounterParam);
+ info(
+ "Auto reboot enabled and boot count at {BOOTCOUNT}, rebooting",
+ "BOOTCOUNT", rebootCounterParam);
return true;
}
else if (rebootCounterParam == 0)
@@ -248,8 +248,8 @@
}
else
{
- info("Auto reboot enabled but HOST BOOTCOUNT has an invalid "
- "value");
+ info(
+ "Auto reboot enabled but HOST BOOTCOUNT has an invalid value");
return false;
}
}