mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-01 12:20:30 +00:00
Fix a compiler warning issued by GCC 6.2.1
* src/abg-dwarf-reader.cc (find_import_unit_point_between_dies): Parameter 5 of find_import_unit_point_between_dies is not of type Dwarf_Off. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
b970ed1dda
commit
ab9d7b3bca
@ -6994,7 +6994,7 @@ find_import_unit_point_between_dies(const read_context& ctxt,
|
|||||||
i->imported_unit_child_off,
|
i->imported_unit_child_off,
|
||||||
i->imported_unit_cu_off,
|
i->imported_unit_cu_off,
|
||||||
i->imported_unit_die_source,
|
i->imported_unit_die_source,
|
||||||
(Dwarf_Off)-1,
|
/*(Dwarf_Off)*/-1,
|
||||||
imported_point_offset))
|
imported_point_offset))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -7015,7 +7015,7 @@ find_import_unit_point_between_dies(const read_context& ctxt,
|
|||||||
i->imported_unit_child_off,
|
i->imported_unit_child_off,
|
||||||
i->imported_unit_cu_off,
|
i->imported_unit_cu_off,
|
||||||
i->imported_unit_die_source,
|
i->imported_unit_die_source,
|
||||||
(Dwarf_Off)-1,
|
/*(Dwarf_Off)*/-1,
|
||||||
imported_point_offset))
|
imported_point_offset))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user