Skip to content
Snippets Groups Projects
Commit 39c95050 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Fix typo in ELF variable name (only see it when C++ support is enabled)

parent 3909e959
No related branches found
No related tags found
No related merge requests found
......@@ -192,10 +192,10 @@ int elf_loadctors(FAR struct elf_loadinfo_s *loadinfo)
FAR uintptr_t *ptr = (uintptr_t *)((FAR void *)(&loadinfo->ctors)[i]);
bvdbg("ctor %d: %08lx + %08lx = %08lx\n",
i, *ptr, (unsigned long)loadinfo->txtalloc,
(unsigned long)(*ptr + loadinfo->txtalloc));
i, *ptr, (unsigned long)loadinfo->textalloc,
(unsigned long)(*ptr + loadinfo->textalloc));
*ptr += loadinfo->txtalloc;
*ptr += loadinfo->textalloc;
}
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment