Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/rtld/module.c

    r58563585 rb19e892  
    3838#include <elf/elf_load.h>
    3939#include <errno.h>
    40 #include <fcntl.h>
    4140#include <loader/pcb.h>
    4241#include <stdio.h>
     
    196195        DPRINTF("load '%s' at 0x%x\n", name_buf, m->bias);
    197196
    198         rc = elf_load_file(name_buf, m->bias, ELDF_RW, &info);
     197        rc = elf_load_file_name(name_buf, m->bias, ELDF_RW, &info);
    199198        if (rc != EE_OK) {
    200199                printf("Failed to load '%s'\n", name_buf);
Note: See TracChangeset for help on using the changeset viewer.