aboutsummaryrefslogtreecommitdiff
path: root/lib/tar/test/tar_iterator2.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-15 16:21:05 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-15 16:39:14 +0200
commit849e6718448793b12d7c6641d59779ca12a2ba08 (patch)
treefa76f15435517cbfdfadef23411f64244a861162 /lib/tar/test/tar_iterator2.c
parentd748c7114d2f06378ad0c76b6c981521dbcee92d (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/tar/test/tar_iterator2.c')
-rw-r--r--lib/tar/test/tar_iterator2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tar/test/tar_iterator2.c b/lib/tar/test/tar_iterator2.c
index 8bbaf62..ac041fe 100644
--- a/lib/tar/test/tar_iterator2.c
+++ b/lib/tar/test/tar_iterator2.c
@@ -53,7 +53,8 @@ int main(int argc, char **argv)
(void)argc; (void)argv;
iret = sqfs_istream_open_file(&fp,
- STRVALUE(TESTPATH) "/" STRVALUE(TESTFILE));
+ STRVALUE(TESTPATH) "/" STRVALUE(TESTFILE),
+ 0);
TEST_EQUAL_I(iret, 0);
TEST_NOT_NULL(fp);
it = tar_open_stream(fp);