Fixed incorrect buffer grow calls

Fixes minor mistake introduced in 94be307225.
This commit is contained in:
Chris Cowan 2025-06-27 19:27:50 -07:00 committed by Ricardo Luís Vaz Silva
commit 13a8b0e5ba

View file

@ -248,7 +248,7 @@ private:
DPrintf(DMSG_NOTIFY, "Expanding special size to %zu\n", MaxSize);
for (auto& stream : Streams)
Streams->Grow(MaxSize);
stream.Grow(MaxSize);
CurrentStream = Streams[CurrentClientTic % BACKUPTICS].Stream + CurrentSize;
}