Skip to content

Commit

Permalink
Update src/ds/serialized.h
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyashton authored Oct 11, 2023
1 parent 0dda11a commit 6693377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ds/serialized.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace serialized
if (size < len)
{
throw InsufficientSpaceException(
fmt::format("Insufficient space (read string: {} < {}", size, len));
fmt::format("Insufficient space (read string: {} < {})", size, len));
}

std::string v(data, data + len);
Expand Down

0 comments on commit 6693377

Please sign in to comment.