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: I07b444d4ae00b0fce52a846f2bff2e6b99fb971c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/src/fru_reader.cpp b/src/fru_reader.cpp
index 61d4020..5acfa65 100644
--- a/src/fru_reader.cpp
+++ b/src/fru_reader.cpp
@@ -39,8 +39,8 @@
{
// miss, populate cache
uint8_t* newData = cache[blk].data();
- int64_t ret =
- readFunc(blk * cacheBlockSize, cacheBlockSize, newData);
+ int64_t ret = readFunc(blk * cacheBlockSize, cacheBlockSize,
+ newData);
// if we've reached the end of the eeprom, record its size
if (ret >= 0 && static_cast<size_t>(ret) < cacheBlockSize)