diff options
Diffstat (limited to 'typeutils.h')
| -rw-r--r-- | typeutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/typeutils.h b/typeutils.h index 1d260ef..fd285b2 100644 --- a/typeutils.h +++ b/typeutils.h @@ -37,7 +37,7 @@ DECLARE_VEC(char, String); -void append_str_to_String(String* target, char* src_str) { +static void append_str_to_String(String* target, char* src_str) { size_t required_size = ((target->count + strlen(src_str)) / target->incr_step + 1) * target->incr_step; if (required_size > target->cap) { |
