sacc

sacc (saccomys): simple gopher client.
Log | Files | Refs | LICENSE

commit 0a5b9f60e25411cf2fbd6688e8be5a7326f2b28d
parent edab539b23594219bbfc83729822da917a18a243
Author: Quentin Rameau <quinq@fifth.space>
Date:   Sun, 24 Jan 2021 14:53:40 +0100

xreallocarray: remove unuseful const parameters

Diffstat:
Msacc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sacc.c b/sacc.c @@ -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;