aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zenstore/caslog.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/zenstore/caslog.cpp b/zenstore/caslog.cpp
index 6d9e22f88..c648cea5e 100644
--- a/zenstore/caslog.cpp
+++ b/zenstore/caslog.cpp
@@ -140,7 +140,9 @@ CasLogFile::Append(const void* DataPointer, uint64_t DataSize)
if (FAILED(hRes))
{
- throw std::system_error(GetLastError(), std::system_category(), "Failed to write to log file '{}'"_format(zen::PathFromHandle(m_File)));
+ throw std::system_error(GetLastError(),
+ std::system_category(),
+ "Failed to write to log file '{}'"_format(zen::PathFromHandle(m_File)));
}
}
@@ -177,7 +179,9 @@ CasBlobFile::Read(void* Data, uint64_t Size, uint64_t Offset)
if (FAILED(hRes))
{
- throw std::system_error(GetLastError(), std::system_category(), "Failed to read from file '{}'"_format(zen::PathFromHandle(m_File)));
+ throw std::system_error(GetLastError(),
+ std::system_category(),
+ "Failed to read from file '{}'"_format(zen::PathFromHandle(m_File)));
}
}