Update shared_ptr function names

This commit is contained in:
Alex
2023-03-23 20:48:50 +02:00
parent 6b01a21a71
commit 7b2137bf4d
4 changed files with 74 additions and 62 deletions

View File

@ -200,13 +200,13 @@ namespace Execute
switch (ELFHeader->e_type)
{
case ET_REL:
bl = ELFLoadRel(ElfFile, ExFile.Get(), Process);
bl = ELFLoadRel(ElfFile, ExFile.get(), Process);
break;
case ET_EXEC:
bl = ELFLoadExec(ElfFile, ExFile.Get(), Process);
bl = ELFLoadExec(ElfFile, ExFile.get(), Process);
break;
case ET_DYN:
bl = ELFLoadDyn(ElfFile, ExFile.Get(), Process);
bl = ELFLoadDyn(ElfFile, ExFile.get(), Process);
break;
case ET_CORE:
{