Purely cosmetic change: order DT_REL* and DT_RELA* consistently.

From projects/uefi, r246107

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2013-11-28 19:41:03 +00:00
parent b5019bc45b
commit ed4c8729a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258719

View file

@ -61,8 +61,8 @@ _reloc(unsigned long ImageBase, ElfW_Dyn *dynamic, EFI_HANDLE image_handle,
relent = 0;
for (dynp = dynamic; dynp->d_tag != DT_NULL; dynp++) {
switch (dynp->d_tag) {
case DT_RELA:
case DT_REL:
case DT_RELA:
rel = (ElfW_Rel *) ((unsigned long) dynp->d_un.d_ptr +
ImageBase);
break;