Fix some style nits in the native reader and writer

While working on the soname comparison support I stumbled across some
small style issues.  Fixed thus.

	* src/abg-reader.cc (read_symbol_db_from_input): Align parameter
	names.  Fix indentation of the first line of the function.
	* src/abg-writer.cc (write_elf_symbols_table): Align parameter names.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2014-12-07 23:39:18 +01:00
parent c0a31b48c7
commit e518336d8a
2 changed files with 9 additions and 8 deletions

View File

@ -864,15 +864,16 @@ read_translation_unit_from_input(read_context& ctxt,
///
/// @return true upon successful parsing, false otherwise.
static bool
read_symbol_db_from_input(read_context& ctxt,
bool function_symbols,
string_elf_symbols_map_sptr& symdb)
read_symbol_db_from_input(read_context& ctxt,
bool function_symbols,
string_elf_symbols_map_sptr& symdb)
{
xml::reader_sptr reader = ctxt.get_reader();
xml::reader_sptr reader = ctxt.get_reader();
if (!reader)
return false;
// The symbol db node must start with the abi-instr node.
// The symbol db must start with the 'elf-function-symbols" or
// 'elf-variable-symbols' element node.
int status = 1;
while (status == 1
&& XML_READER_GET_NODE_TYPE(reader) != XML_READER_TYPE_ELEMENT)

View File

@ -1470,9 +1470,9 @@ write_elf_symbol(const shared_ptr<elf_symbol> sym,
///
/// @return true upon successful completion.
static bool
write_elf_symbols_table(const elf_symbols& syms,
write_context& ctxt,
unsigned indent)
write_elf_symbols_table(const elf_symbols& syms,
write_context& ctxt,
unsigned indent)
{
if (syms.empty())
return false;