Skip to content
This repository has been archived by the owner on Jan 3, 2021. It is now read-only.

Commit

Permalink
Just some newline-notNewline
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxuser committed Jul 21, 2014
1 parent 75735b8 commit 76ebc34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OZMTool/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -685,17 +685,17 @@ UINT8 injectDSDTintoAmiboardInfo(QByteArray amiboardbuf, QByteArray dsdtbuf, QBy
dataLeft -= (physEntries * EFI_IMAGE_SIZEOF_RELOC_ENTRY) + EFI_IMAGE_SIZEOF_BASE_RELOCATION;
index++;

printf("\n - Relocation Table %X:\n", index);
printf(" - Relocation Table %X:\n", index);

if(BASE_RELOCATION->VirtualAddress < (UINT32)offset) {
printf("\n\tNothing to do here - VirtualAddress < DSDTOffset (%X < %X)\n",
printf("\tNothing to do here - VirtualAddress < DSDTOffset (%X < %X)\n",
BASE_RELOCATION->VirtualAddress, offset);
continue;
}

for(int j=0; j<logicalEntries; j++) {
printf(" - Relocation: %X\n", j);
printf("\tOffset: %X --> %X\n\n",
printf("\tOffset: %X --> %X\n",
RELOCATION_ENTRIES[j].offset,
RELOCATION_ENTRIES[j].offset += alignment);
}
Expand Down

0 comments on commit 76ebc34

Please sign in to comment.