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/systemd_target_signal.cpp b/systemd_target_signal.cpp
index 79ac933..25089ef 100644
--- a/systemd_target_signal.cpp
+++ b/systemd_target_signal.cpp
@@ -53,9 +53,9 @@
targetEntry->second.errorsToMonitor.end(),
result) != targetEntry->second.errorsToMonitor.end())
{
- info("Monitored systemd unit has hit an error, unit:{UNIT}, "
- "result:{RESULT}",
- "UNIT", unit, "RESULT", result);
+ info(
+ "Monitored systemd unit has hit an error, unit:{UNIT}, result:{RESULT}",
+ "UNIT", unit, "RESULT", result);
return (&targetEntry->second.errorToLog);
}
}