From e811851deba9c45f3d9b3c5b4ad5eaa7945382d5 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 12 Jun 2023 20:14:44 +0200 Subject: Mass rename istream_t/ostream_t with sqfs_ prefix istream_t becomes sqfs_istream_t and ostream_t becomes sqfs_ostream_t Signed-off-by: David Oberhollenzer --- bin/rdsquashfs/src/fill_files.c | 2 +- bin/rdsquashfs/src/rdsquashfs.c | 2 +- 2 files 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 f482abe..e692ee3 100644 --- a/bin/rdsquashfs/src/fill_files.c +++ b/bin/rdsquashfs/src/fill_files.c @@ -136,7 +136,7 @@ static int gen_file_list_dfs(const sqfs_tree_node_t *n) static int fill_files(sqfs_data_reader_t *data, int flags) { int ret, openflags; - ostream_t *fp; + sqfs_ostream_t *fp; size_t i; openflags = SQFS_FILE_OPEN_OVERWRITE; diff --git a/bin/rdsquashfs/src/rdsquashfs.c b/bin/rdsquashfs/src/rdsquashfs.c index bdcc5a0..ad85e68 100644 --- a/bin/rdsquashfs/src/rdsquashfs.c +++ b/bin/rdsquashfs/src/rdsquashfs.c @@ -207,7 +207,7 @@ int main(int argc, char **argv) goto out; break; case OP_CAT: { - ostream_t *fp; + sqfs_ostream_t *fp; if (!S_ISREG(n->inode->base.mode)) { fprintf(stderr, "/%s: not a regular file\n", -- cgit v1.2.3