Fix str_append_data()
`void *' is more appropriate here.
This commit is contained in:
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);
|
||||||
|
|||||||
Reference in New Issue
Block a user