diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-15 16:21:05 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-15 16:39:14 +0200 |
commit | 849e6718448793b12d7c6641d59779ca12a2ba08 (patch) | |
tree | fa76f15435517cbfdfadef23411f64244a861162 /lib/io | |
parent | d748c7114d2f06378ad0c76b6c981521dbcee92d (diff) |
libsquashfs: cleanup the flag situation on istream/ostream functions
- The ostream creation functions already have flag arguments,
but make them an sqfs_u32 instead of int.
- Add flag arguments to the istream functions, sanitzie and forward
them when opening the handle.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/io')
-rw-r--r-- | lib/io/src/std.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/io/src/std.c b/lib/io/src/std.c index c52b4c5..62635ec 100644 --- a/lib/io/src/std.c +++ b/lib/io/src/std.c @@ -23,7 +23,7 @@ int istream_open_stdin(sqfs_istream_t **out) { sqfs_file_handle_t hnd = GetStdHandle(STD_INPUT_HANDLE); - return sqfs_istream_open_handle(out, "stdin", hnd); + return sqfs_istream_open_handle(out, "stdin", hnd, 0); } int ostream_open_stdout(sqfs_ostream_t **out) |