Fix C90 conversion

This commit is contained in:
Anthony Green 2003-09-15 14:40:44 +00:00
parent 71e06f8034
commit 739fea7ba8
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2003-09-15 Anthony Green <green@redhat.com>
* dlltool.c (prefix_encode): Fix ISO C90 conversion.
(dlltmp): Ditto.
(dtab): Ditto.
2003-09-14 Andreas Jaeger <aj@suse.de>
* addr2line.c: Convert to ISO C90 prototypes, change PTR, remove

View File

@ -706,12 +706,12 @@ static void usage (FILE *, int);
static void inform (const char *, ...);
static char *
prefix_encode (char *start, unsigned code))
prefix_encode (char *start, unsigned code)
{
static char alpha[26] = "abcdefghijklmnopqrstuvwxyz";
static char buf[32];
char *p;
strcpy (buf, start;
strcpy (buf, start);
p = strchr (buf, '\0');
do
*p++ = alpha[code % sizeof (alpha)];
@ -721,11 +721,11 @@ prefix_encode (char *start, unsigned code))
}
static char *
dlltmp (char **buf, const char *fmt))
dlltmp (char **buf, const char *fmt)
{
if (!*buf)
{
*buf = malloc (strlen (tmp_prefix) + 64;
*buf = malloc (strlen (tmp_prefix) + 64);
sprintf (*buf, fmt, tmp_prefix);
}
return *buf;
@ -2890,7 +2890,7 @@ remove_null_names (export_type **ptr)
}
static void
dtab (export **ptr
dtab (export_type **ptr
#ifndef SACDEBUG
ATTRIBUTE_UNUSED
#endif