oops - omitted from previous delta

This commit is contained in:
Nick Clifton 2009-09-28 12:15:51 +00:00
parent caa83f8b08
commit e3ad91e358
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2009-09-25 Martin Thuresson <martint@google.com>
Update soruces to make alpha targets compile cleanly with
-Wc++-compat:
* chew.c: Add casts.
2009-08-29 Martin Thuresson <martin@mtme.org>
* chew.c (newentry, add_intrinsic): Rename variable new to

View File

@ -130,7 +130,7 @@ init_string_with_size (buffer, size)
{
buffer->write_idx = 0;
buffer->size = size;
buffer->ptr = malloc (size);
buffer->ptr = (char *) malloc (size);
}
static void
@ -201,7 +201,7 @@ catchar (buffer, ch)
if (buffer->write_idx == buffer->size)
{
buffer->size *= 2;
buffer->ptr = realloc (buffer->ptr, buffer->size);
buffer->ptr = (char *) realloc (buffer->ptr, buffer->size);
}
buffer->ptr[buffer->write_idx++] = ch;
@ -228,7 +228,7 @@ catbuf (buffer, buf, len)
{
while (buffer->write_idx + len >= buffer->size)
buffer->size *= 2;
buffer->ptr = realloc (buffer->ptr, buffer->size);
buffer->ptr = (char *) realloc (buffer->ptr, buffer->size);
}
memcpy (buffer->ptr + buffer->write_idx, buf, len);
buffer->write_idx += len;
@ -1177,7 +1177,7 @@ nextword (string, word)
}
}
*word = malloc (length + 1);
*word = (char *) malloc (length + 1);
dst = *word;
src = word_start;