Skip to content
Snippets Groups Projects
Commit b43b769b authored by gerd's avatar gerd
Browse files

* src/lisp/elf.c (map_core_sections): Add missing stream argument

	to fprintf.
parent d538fdfd
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ map_core_sections(char *exec_name)
if (!strncmp(nambuf, core_section_names[j], 6)) {
/* Found a core section. Map it! */
if (os_map(exec_fd, sh.sh_offset, (os_vm_address_t)sh.sh_addr, sh.sh_size) == -1) {
fprintf("Can't map section %s\n", core_section_names[j]);
fprintf(stderr, "Can't map section %s\n", core_section_names[j]);
exit(-1);
}
sections_remaining--;
......
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