txreallocarray: remove unuseful const parameters - sacc - [fork] customized build of sacc, the simple console gopher client
HTML git clone git://src.adamsgaard.dk/sacc
DIR Log
DIR Files
DIR Refs
DIR LICENSE
---
DIR commit d11aa9adb8e8b8c966e8e5ed40f859118705b51f
DIR parent 160d41ee493e2be5c9e0e12580d6fc51ebd0f625
HTML Author: Quentin Rameau <quinq@fifth.space>
Date: Sun, 24 Jan 2021 14:53:40 +0100
xreallocarray: remove unuseful const parameters
Diffstat:
M sacc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/sacc.c b/sacc.c
t@@ -132,7 +132,7 @@ mbsprint(const char *s, size_t len)
}
static void *
-xreallocarray(void *m, const size_t n, const size_t s)
+xreallocarray(void *m, size_t n, size_t s)
{
void *nm;