From d5e2c6a3146c20354ab11f1dae48ab755996fa96 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 8 Sep 2023 18:49:54 +0200 Subject: libsqfs: bring sqfs_file_t in line with stream API Rename the open function to sqfs_file_open, use an argument for the return pointer and pass back and error number on failure. Also add an inermediate function to open an sqfs_file_t using a handle, similar to the stream API. The get_file_size function is moved to the native wrappers and some of the implementation is cleaned up a little. Signed-off-by: David Oberhollenzer --- extras/list_files.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'extras/list_files.c') diff --git a/extras/list_files.c b/extras/list_files.c index d1e0a64..89a1f30 100644 --- a/extras/list_files.c +++ b/extras/list_files.c @@ -70,9 +70,8 @@ int main(int argc, char **argv) return EXIT_FAILURE; } - file = sqfs_open_file(argv[1], SQFS_FILE_OPEN_READ_ONLY); - if (file == NULL) { - perror(argv[1]); + if (sqfs_file_open(&file, argv[1], SQFS_FILE_OPEN_READ_ONLY)) { + fprintf(stderr, "%s: error opening file.\n", argv[1]); return EXIT_FAILURE; } -- cgit v1.2.3