This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Fix some warnings in binutils/



Ok to commit?

Andreas

2001-09-22  Andreas Jaeger  <aj@suse.de>

	* nlmconv.c: Fix warnings about unused attributes and function
	prototypes.

	* strings.c: Add prototype for get_char.

============================================================
Index: binutils/nlmconv.c
--- binutils/nlmconv.c	2001/09/19 05:33:15	1.7
+++ binutils/nlmconv.c	2001/09/22 14:07:35
@@ -56,7 +56,7 @@
 /* If strerror is just a macro, we want to use the one from libiberty
    since it will handle undefined values.  */
 #undef strerror
-extern char *strerror ();
+extern char *strerror PARAMS ((int));
 
 #ifndef localtime
 extern struct tm *localtime ();
@@ -1129,7 +1129,7 @@
 select_output_format (arch, mach, bigendian)
      enum bfd_architecture arch;
      unsigned long mach;
-     boolean bigendian;
+     boolean bigendian ATTRIBUTE_UNUSED;
 {
   switch (arch)
     {
@@ -1162,7 +1162,7 @@
 
 static void
 setup_sections (inbfd, insec, data_ptr)
-     bfd *inbfd;
+     bfd *inbfd ATTRIBUTE_UNUSED;
      asection *insec;
      PTR data_ptr;
 {
@@ -1386,12 +1386,12 @@
 static void
 default_mangle_relocs (outbfd, insec, relocs_ptr, reloc_count_ptr, contents,
 		       contents_size)
-     bfd *outbfd;
+     bfd *outbfd ATTRIBUTE_UNUSED;
      asection *insec;
      arelent ***relocs_ptr;
      long *reloc_count_ptr;
-     char *contents;
-     bfd_size_type contents_size;
+     char *contents ATTRIBUTE_UNUSED;
+     bfd_size_type contents_size ATTRIBUTE_UNUSED;
 {
   if (insec->output_offset != 0)
     {
@@ -1595,8 +1595,8 @@
      asection *insec;
      register arelent ***relocs_ptr;
      long *reloc_count_ptr;
-     char *contents;
-     bfd_size_type contents_size;
+     char *contents ATTRIBUTE_UNUSED;
+     bfd_size_type contents_size ATTRIBUTE_UNUSED;
 {
   long old_reloc_count;
   arelent **old_relocs;
@@ -1728,7 +1728,7 @@
 static void
 powerpc_build_stubs (inbfd, outbfd, symbols_ptr, symcount_ptr)
      bfd *inbfd;
-     bfd *outbfd;
+     bfd *outbfd ATTRIBUTE_UNUSED;
      asymbol ***symbols_ptr;
      long *symcount_ptr;
 {
@@ -1917,7 +1917,7 @@
      register arelent ***relocs_ptr;
      long *reloc_count_ptr;
      char *contents;
-     bfd_size_type contents_size;
+     bfd_size_type contents_size ATTRIBUTE_UNUSED;
 {
   reloc_howto_type *toc_howto;
   long reloc_count;
============================================================
Index: binutils/strings.c
--- binutils/strings.c	2001/09/19 05:33:17	1.11
+++ binutils/strings.c	2001/09/22 14:07:35
@@ -136,6 +136,8 @@
 				  file_ptr address, int stop_point,
 				  int magiccount, char *magic));
 static void usage PARAMS ((FILE *stream, int status));
+static long get_char PARAMS ((FILE *stream, file_ptr *address,
+			      int *magiccount, char **magic));
 
 int
 main (argc, argv)

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]