From 2694532a5479d157903b6c600d9b1d5c145a4e4c Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 12 Jun 2023 19:40:41 +0200 Subject: libio: replace OSTREAM_OPEN_* flags with SQFS_FILE_OPEN_* flags Signed-off-by: David Oberhollenzer --- bin/rdsquashfs/src/fill_files.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/rdsquashfs/src') diff --git a/bin/rdsquashfs/src/fill_files.c b/bin/rdsquashfs/src/fill_files.c index 372752a..f482abe 100644 --- a/bin/rdsquashfs/src/fill_files.c +++ b/bin/rdsquashfs/src/fill_files.c @@ -139,10 +139,10 @@ static int fill_files(sqfs_data_reader_t *data, int flags) ostream_t *fp; size_t i; - openflags = OSTREAM_OPEN_OVERWRITE; + openflags = SQFS_FILE_OPEN_OVERWRITE; if (flags & UNPACK_NO_SPARSE) - openflags |= OSTREAM_OPEN_NO_SPARSE; + openflags |= SQFS_FILE_OPEN_NO_SPARSE; for (i = 0; i < num_files; ++i) { fp = ostream_open_file(files[i].path, openflags); -- cgit v1.2.3