@B write "ARFILENAMES/ " instead of "ARFILENAMES/"

This commit is contained in:
bebbo 2017-02-22 14:33:58 +01:00
parent 5856b5a4cc
commit 9cb231643d
1 changed files with 2 additions and 2 deletions

View File

@ -1229,7 +1229,7 @@ _bfd_archive_bsd_construct_extended_name_table (abfd, tabloc, tablen, name)
bfd_size_type *tablen;
const char **name;
{
*name = "ARFILENAMES/";
*name = "ARFILENAMES/ ";
return _bfd_construct_extended_name_table (abfd, FALSE, tabloc, tablen);
}
@ -1242,7 +1242,7 @@ _bfd_archive_coff_construct_extended_name_table (abfd, tabloc, tablen, name)
bfd_size_type *tablen;
const char **name;
{
*name = "//";
*name = "// ";
return _bfd_construct_extended_name_table (abfd, TRUE, tabloc, tablen);
}