# HG changeset patch # User Matti Hamalainen # Date 1303314866 -10800 # Node ID 589f5e37dd91c444e735bb74eaa655dc11ec53bc # Parent cb86d7543be2a7a2f86a2fc9947187203760e5f2 Staticize. diff -r cb86d7543be2 -r 589f5e37dd91 th_string.c --- a/th_string.c Wed Apr 20 18:48:42 2011 +0300 +++ b/th_string.c Wed Apr 20 18:54:26 2011 +0300 @@ -439,7 +439,7 @@ } -BOOL th_growbuf(char **buf, size_t *bufsize, size_t *len, size_t grow) +static BOOL th_growbuf(char **buf, size_t *bufsize, size_t *len, size_t grow) { assert(buf != NULL); assert(bufsize != NULL);