diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-15 15:16:03 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-15 15:16:03 +0200 |
commit | 484cd01590ec488cca1f8a5c7c76cd223609e299 (patch) | |
tree | 0e3bc268688c2feb8773871a43381a998ce846e7 /bin/rdsquashfs | |
parent | 8cf84b4995552bad4e77eb795e36c0b1d65a720a (diff) |
Migrate file istream/ostream from libio to libsquashfs
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/rdsquashfs')
-rw-r--r-- | bin/rdsquashfs/src/fill_files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rdsquashfs/src/fill_files.c b/bin/rdsquashfs/src/fill_files.c index f0ad7e2..7087883 100644 --- a/bin/rdsquashfs/src/fill_files.c +++ b/bin/rdsquashfs/src/fill_files.c @@ -145,7 +145,7 @@ static int fill_files(sqfs_data_reader_t *data, int flags) openflags |= SQFS_FILE_OPEN_NO_SPARSE; for (i = 0; i < num_files; ++i) { - ret = ostream_open_file(&fp, files[i].path, openflags); + ret = sqfs_ostream_open_file(&fp, files[i].path, openflags); if (ret) { sqfs_perror(files[i].path, NULL, ret); return -1; |