diff options
Diffstat (limited to 'bin/rdsquashfs')
-rw-r--r-- | bin/rdsquashfs/src/rdsquashfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/rdsquashfs/src/rdsquashfs.c b/bin/rdsquashfs/src/rdsquashfs.c index 9d8f3ba..2f5c50d 100644 --- a/bin/rdsquashfs/src/rdsquashfs.c +++ b/bin/rdsquashfs/src/rdsquashfs.c @@ -114,9 +114,9 @@ int main(int argc, char **argv) process_command_line(&opt, argc, argv); - file = sqfs_open_file(opt.image_name, SQFS_FILE_OPEN_READ_ONLY); - if (file == NULL) { - perror(opt.image_name); + ret = sqfs_file_open(&file, opt.image_name, SQFS_FILE_OPEN_READ_ONLY); + if (ret) { + sqfs_perror(opt.image_name, "open", ret); goto out; } |