diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-10-06 19:01:11 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-10-06 19:08:01 +0200 |
commit | 41ddda0c732d916a6962c54a3a974a8b753f194b (patch) | |
tree | 5ea74ef79c89d41e936dfbb8dc4d65ddbcde1a7d /unpack/fill_files.c | |
parent | 19b7609586aac382f21bdc5c7369c56417775d6d (diff) |
Improve error reporting for sqfs2tar, rdsquashfs, sqfsdiff
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/fill_files.c')
-rw-r--r-- | unpack/fill_files.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unpack/fill_files.c b/unpack/fill_files.c index 12b39fb..481c398 100644 --- a/unpack/fill_files.c +++ b/unpack/fill_files.c @@ -143,7 +143,8 @@ static int fill_files(sqfs_data_reader_t *data, int flags) if (!(flags & UNPACK_QUIET)) printf("unpacking %s\n", files[i].path); - if (sqfs_data_reader_dump(data, files[i].inode, fd, block_size, + if (sqfs_data_reader_dump(files[i].path, data, files[i].inode, + fd, block_size, (flags & UNPACK_NO_SPARSE) == 0)) { close(fd); return -1; |