diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-01-22 09:26:39 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-01-22 09:26:39 -0500 |
commit | 74ddda664b9d7e843da3ec8254716c11016007e5 (patch) | |
tree | 5a284a80aaa4fd770d92307a740672987aa0cabe /src/relocation.c | |
parent | 444ccb0a7c5f88f408bee91db052d00794791ccc (diff) | |
download | spmc-74ddda664b9d7e843da3ec8254716c11016007e5.tar.gz |
Change fstree signature
Change strstr_array return type to char*
Re-add and reorder a few prototypes in spm.h
Diffstat (limited to 'src/relocation.c')
-rw-r--r-- | src/relocation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/relocation.c b/src/relocation.c index 1ba95d5..9407036 100644 --- a/src/relocation.c +++ b/src/relocation.c @@ -253,7 +253,7 @@ int prefixes_write(const char *output_file, int mode, char **prefix, const char return -1; } - FSTree *fsdata = fstree(tree); + FSTree *fsdata = fstree(tree, NULL); if (!fsdata) { fclose(fp); fprintf(SYSERROR); |