clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: I3edadffec0ea11e0a52d9b060167e9a9a38f1972
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/power-supply/record_manager.cpp b/power-supply/record_manager.cpp
index 336d0c5..c1d153b 100644
--- a/power-supply/record_manager.cpp
+++ b/power-supply/record_manager.cpp
@@ -62,8 +62,8 @@
// If it just rolled over from 0xFF to 0x00, then no
// need to clear. If we see a 0 seemingly out of nowhere,
// then it was a sync so clear the old records.
- auto rolledOver =
- (previousID == lastSequenceID) && (id == FIRST_SEQUENCE_ID);
+ auto rolledOver = (previousID == lastSequenceID) &&
+ (id == FIRST_SEQUENCE_ID);
if (!rolledOver)
{