Skip to content
Snippets Groups Projects
Commit 6be34211 authored by Lioncash's avatar Lioncash
Browse files

fsp_srv: Resolve sign-mismatch warnings in assertion comparisons

parent d6e9b96e
No related branches found
No related tags found
No related merge requests found
...@@ -138,15 +138,15 @@ private: ...@@ -138,15 +138,15 @@ private:
const std::vector<u8> data = ctx.ReadBuffer(); const std::vector<u8> data = ctx.ReadBuffer();
ASSERT_MSG( ASSERT_MSG(
data.size() <= length, static_cast<s64>(data.size()) <= length,
"Attempting to write more data than requested (requested={:016X}, actual={:016X}).", "Attempting to write more data than requested (requested={:016X}, actual={:016X}).",
length, data.size()); length, data.size());
// Write the data to the Storage backend // Write the data to the Storage backend
std::vector<u8> actual_data(data.begin(), data.begin() + length); std::vector<u8> actual_data(data.begin(), data.begin() + length);
const auto written = backend->WriteBytes(std::move(actual_data), offset); const std::size_t written = backend->WriteBytes(std::move(actual_data), offset);
ASSERT_MSG(written == length, ASSERT_MSG(static_cast<s64>(written) == length,
"Could not write all bytes to file (requested={:016X}, actual={:016X}).", length, "Could not write all bytes to file (requested={:016X}, actual={:016X}).", length,
written); written);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment