Fix C90 conversion
[deliverable/binutils-gdb.git] / binutils / dlltool.c
index 84f369243d35b42b33d29d30436d25f7406476cb..996ec2c9df780fd7d72ffd5cdefd971f46be369e 100644 (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
This page took 0.024382 seconds and 4 git commands to generate.