summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 853fb86..8b2d33a 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -66,11 +66,11 @@ makenewline (unsigned char *data, size_t length)
assert (data != NULL);
assert (length > 0);
- newline = safemalloc (sizeof (struct bufline_s));
+ newline = (struct bufline_s *)safemalloc (sizeof (struct bufline_s));
if (!newline)
return NULL;
- newline->string = safemalloc (length);
+ newline->string = (unsigned char *)safemalloc (length);
if (!newline->string)
{
safefree (newline);