@@ -141,7 +141,7 @@ template <class S> class symbol_section_accessor_template
141
141
unsigned char & other ) const
142
142
{
143
143
144
- const endianess_convertor & convertor = elf_file.get_convertor ();
144
+ const endianness_convertor & convertor = elf_file.get_convertor ();
145
145
146
146
Elf_Xword idx = 0 ;
147
147
bool match = false ;
@@ -296,7 +296,7 @@ template <class S> class symbol_section_accessor_template
296
296
unsigned char & other ) const
297
297
{
298
298
bool ret = false ;
299
- const endianess_convertor & convertor = elf_file.get_convertor ();
299
+ const endianness_convertor & convertor = elf_file.get_convertor ();
300
300
301
301
Elf_Word nbucket = *(const Elf_Word*)hash_section->get_data ();
302
302
nbucket = convertor ( nbucket );
@@ -335,7 +335,7 @@ template <class S> class symbol_section_accessor_template
335
335
unsigned char & other ) const
336
336
{
337
337
bool ret = false ;
338
- const endianess_convertor & convertor = elf_file.get_convertor ();
338
+ const endianness_convertor & convertor = elf_file.get_convertor ();
339
339
340
340
uint32_t nbuckets = *( (uint32_t *)hash_section->get_data () + 0 );
341
341
uint32_t symoffset = *( (uint32_t *)hash_section->get_data () + 1 );
@@ -447,7 +447,7 @@ template <class S> class symbol_section_accessor_template
447
447
symbol_section->get_data () +
448
448
index * symbol_section->get_entry_size () );
449
449
450
- const endianess_convertor & convertor = elf_file.get_convertor ();
450
+ const endianness_convertor & convertor = elf_file.get_convertor ();
451
451
452
452
section* string_section =
453
453
elf_file.sections [get_string_table_index ()];
@@ -479,7 +479,7 @@ template <class S> class symbol_section_accessor_template
479
479
unsigned char other,
480
480
Elf_Half shndx )
481
481
{
482
- const endianess_convertor & convertor = elf_file.get_convertor ();
482
+ const endianness_convertor & convertor = elf_file.get_convertor ();
483
483
484
484
T entry;
485
485
entry.st_name = convertor ( name );
@@ -505,7 +505,7 @@ template <class S> class symbol_section_accessor_template
505
505
Elf_Xword generic_arrange_local_symbols (
506
506
std::function<void ( Elf_Xword first, Elf_Xword second )> func )
507
507
{
508
- const endianess_convertor & convertor = elf_file.get_convertor ();
508
+ const endianness_convertor & convertor = elf_file.get_convertor ();
509
509
510
510
Elf_Word first_not_local =
511
511
1 ; // Skip the first entry. It is always NOTYPE
0 commit comments