Updated sources to avoid using the identifier name "new", which is a
[deliverable/binutils-gdb.git] / bfd / som.c
index 96da72e53fde87d6f57a48728b0618245307fa3e..5f3192166092c0f406e721c07bd84417b833e5c6 100644 (file)
--- a/bfd/som.c
+++ b/bfd/som.c
@@ -4472,13 +4472,13 @@ static asymbol *
 som_make_empty_symbol (bfd *abfd)
 {
   bfd_size_type amt = sizeof (som_symbol_type);
-  som_symbol_type *new = bfd_zalloc (abfd, amt);
+  som_symbol_type *new_symbol_type = bfd_zalloc (abfd, amt);
 
-  if (new == NULL)
+  if (new_symbol_type == NULL)
     return NULL;
-  new->symbol.the_bfd = abfd;
+  new_symbol_type->symbol.the_bfd = abfd;
 
-  return &new->symbol;
+  return &new_symbol_type->symbol;
 }
 
 /* Print symbol information.  */
This page took 0.024318 seconds and 4 git commands to generate.