From b118b047854492794e2618b17edcf802e1acf3ad Mon Sep 17 00:00:00 2001 From: Wiebe Cazemier Date: Wed, 9 Dec 2020 15:45:33 +0100 Subject: [PATCH] Fix copy-paste error --- client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.h b/client.h index 02082d2..37995f5 100644 --- a/client.h +++ b/client.h @@ -74,7 +74,7 @@ class Client return; const size_t newBufSize = writeBufsize + add_size; - writebuf = (char*)realloc(readbuf, newBufSize); + writebuf = (char*)realloc(writebuf, newBufSize); writeBufsize = newBufSize; } -- libgit2 0.21.4