Changeset c095552 in mainline


Ignore:
Timestamp:
2025-02-05T13:29:55Z (7 days ago)
Author:
Matěj Volf <git@…>
Children:
6c3071f
Parents:
acb14ce
Message:

fix debug prints

the variable file_name is not defined, not sure where it came from..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/elf/elf_load.c

    racb14ce rc095552  
    6565        rc = elf_load_file(file, 0, finfo);
    6666        if (rc != EOK) {
    67                 DPRINTF("Failed to load executable '%s'.\n", file_name);
     67                DPRINTF("Failed to load executable.\n");
    6868                return rc;
    6969        }
     
    7373        rc = rtld_prog_process(finfo, &env);
    7474        if (rc != EOK) {
    75                 DPRINTF("Failed to process executable '%s'.\n", file_name);
     75                DPRINTF("Failed to process executable.\n");
    7676                return rc;
    7777        }
Note: See TracChangeset for help on using the changeset viewer.