txreallocarray: remove unuseful const parameters - sacc - sacc (saccomys): simple gopher client.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 0a5b9f60e25411cf2fbd6688e8be5a7326f2b28d
 (DIR) parent edab539b23594219bbfc83729822da917a18a243
 (HTM) 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;