Changeset c095552 in mainline
- Timestamp:
- 2025-02-05T13:29:55Z (7 days ago)
- Children:
- 6c3071f
- Parents:
- acb14ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/elf/elf_load.c
racb14ce rc095552 65 65 rc = elf_load_file(file, 0, finfo); 66 66 if (rc != EOK) { 67 DPRINTF("Failed to load executable '%s'.\n", file_name);67 DPRINTF("Failed to load executable.\n"); 68 68 return rc; 69 69 } … … 73 73 rc = rtld_prog_process(finfo, &env); 74 74 if (rc != EOK) { 75 DPRINTF("Failed to process executable '%s'.\n", file_name);75 DPRINTF("Failed to process executable.\n"); 76 76 return rc; 77 77 }
Note:
See TracChangeset
for help on using the changeset viewer.