mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
minor fix
Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com>
This commit is contained in:
@@ -53,7 +53,7 @@ read_varint(void const* buf, std::size_t buflen, std::size_t& t)
|
||||
return 1;
|
||||
}
|
||||
auto const used = n;
|
||||
for (; n > 0; --n)
|
||||
for (n = n - 1; n > 0; --n)
|
||||
{
|
||||
auto const d = p[n];
|
||||
auto const t0 = t;
|
||||
|
||||
Reference in New Issue
Block a user