[OBV] Fix build -- missing ';'

bfd/ChangeLog

	* elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add
	missing ';'.
This commit is contained in:
Keith Seitz 2015-03-23 11:41:11 -07:00
parent 94a75bde2f
commit c53ed7cf57
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2015-03-23 Keith Seitz <keiths@redhat.com>
* elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add
missing ';'.
2015-03-23 Marcus Shawcroft <marcus.shawcroft@arm.com>
* elfnn-aarch64.c (erratum_835769_scan): Factor stub name

View file

@ -2368,7 +2368,7 @@ _bfd_aarch64_create_or_find_stub_sec (asection *section,
stub_sec = htab->stub_group[link_sec->id].stub_sec;
if (stub_sec == NULL)
{
stub_sec = _bfd_aarch64_create_stub_section (link_sec, htab)
stub_sec = _bfd_aarch64_create_stub_section (link_sec, htab);
if (stub_sec == NULL)
return NULL;
htab->stub_group[link_sec->id].stub_sec = stub_sec;