parent
7ee3bbc86b
commit
0da95bf1c8
2
utils.c
2
utils.c
|
@ -449,7 +449,7 @@ str_ensure_space (struct str *self, size_t n)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
str_append_data (struct str *self, const char *data, size_t n)
|
str_append_data (struct str *self, const void *data, size_t n)
|
||||||
{
|
{
|
||||||
str_ensure_space (self, n);
|
str_ensure_space (self, n);
|
||||||
memcpy (self->str + self->len, data, n);
|
memcpy (self->str + self->len, data, n);
|
||||||
|
|
Loading…
Reference in New Issue