xreallocarray: remove unuseful const parameters - sacc - sacc(omys), simple console gopher client | |
git clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/ | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
commit 0a5b9f60e25411cf2fbd6688e8be5a7326f2b28d | |
parent edab539b23594219bbfc83729822da917a18a243 | |
Author: Quentin Rameau | |
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(-) --- | |
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; |