* dbxread.c (process_one_symbol): Constify section_offsets parameter.
[deliverable/binutils-gdb.git] / binutils / coffgrok.c
index 01a18cdc98b39b3a64fe0c5a5b2ebed978431999..746edc1fad70cee99b9a4bad385a9a2c6a64095f 100644 (file)
@@ -1,6 +1,6 @@
 /* coffgrok.c
-   Copyright 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2007
-   Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
+   2007, 2009  Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
 
@@ -96,10 +96,11 @@ empty_symbol (void)
 
 /*int l;*/
 static void
-push_scope (int link)
+push_scope (int slink)
 {
   struct coff_scope *n = empty_scope ();
-  if (link)
+
+  if (slink)
     {
       if (top_scope)
        {
@@ -735,7 +736,7 @@ coff_grok (bfd *inabfd)
   if (symcount < 0)
     bfd_fatal (abfd->filename);
   rawsyms = obj_raw_syments (abfd);
-  rawcount = obj_raw_syment_count (abfd);;
+  rawcount = obj_raw_syment_count (abfd);
   tindex = (struct coff_symbol **) (xcalloc (sizeof (struct coff_symbol *), rawcount));
 
   p = doit ();
This page took 0.035132 seconds and 4 git commands to generate.