Cleanups.

This commit is contained in:
Markus F.X.J. Oberhumer
2016-11-20 13:16:19 +01:00
parent 33a51e69bf
commit 8d61e037f9
4 changed files with 12 additions and 7 deletions
+3 -3
View File
@@ -207,7 +207,7 @@ void ElfLinker::init(const void *pdata_v, int plen)
}
}
void ElfLinker::preprocessSections(char *start, char const *end)
void ElfLinker::preprocessSections(char *start, char *end)
{
char *nextl;
for (nsections = 0; start < end; start = 1+ nextl)
@@ -233,7 +233,7 @@ void ElfLinker::preprocessSections(char *start, char const *end)
addSection("*UND*", NULL, 0, 0);
}
void ElfLinker::preprocessSymbols(char *start, char const *end)
void ElfLinker::preprocessSymbols(char *start, char *end)
{
char *nextl;
for (nsymbols = 0; start < end; start = 1+ nextl)
@@ -273,7 +273,7 @@ void ElfLinker::preprocessSymbols(char *start, char const *end)
}
}
void ElfLinker::preprocessRelocations(char *start, char const *end)
void ElfLinker::preprocessRelocations(char *start, char *end)
{
Section *section = NULL;
char *nextl;