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 --- bin/sqfsdiff/src/sqfsdiff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/sqfsdiff/src') diff --git a/bin/sqfsdiff/src/sqfsdiff.c b/bin/sqfsdiff/src/sqfsdiff.c index d789fe1..1bbf62c 100644 --- a/bin/sqfsdiff/src/sqfsdiff.c +++ b/bin/sqfsdiff/src/sqfsdiff.c @@ -22,9 +22,9 @@ static int open_sfqs(sqfs_state_t *state, const char *path) memset(state, 0, sizeof(*state)); - state->file = sqfs_open_file(path, SQFS_FILE_OPEN_READ_ONLY); + ret = sqfs_file_open(&state->file, path, SQFS_FILE_OPEN_READ_ONLY); if (state->file == NULL) { - perror(path); + sqfs_perror(path, "open", ret); return -1; } -- cgit v1.2.3