]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Fix last commit.
authorRoland McGrath <roland@redhat.com>
Sun, 15 Feb 2009 23:01:03 +0000 (15:01 -0800)
committerRoland McGrath <roland@redhat.com>
Sun, 15 Feb 2009 23:01:03 +0000 (15:01 -0800)
backends/ppc_attrs.c

index 7320f264c23ea09a4aa822e68eb2e664c442542e..985df3f967d6256b15dd329dac6a1a44186b852a 100644 (file)
@@ -69,12 +69,12 @@ ppc_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name)
 
       case 12:
        *tag_name = "GNU_Power_ABI_Struct_Return";
-       static const char *vector_kinds[] =
+       static const char *struct_return_kinds[] =
          {
            "Any", "r3/r4", "Memory"
          };
-       if (value < sizeof vector_kinds / sizeof vector_kinds[0])
-         *value_name = vector_kinds[value];
+       if (value < sizeof struct_return_kinds / sizeof struct_return_kinds[0])
+         *value_name = struct_return_kinds[value];
        return true;
       }