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/gensquashfs/src/fstree_from_file.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/gensquashfs/src/fstree_from_file.c') diff --git a/bin/gensquashfs/src/fstree_from_file.c b/bin/gensquashfs/src/fstree_from_file.c index 325bce2..efb5d43 100644 --- a/bin/gensquashfs/src/fstree_from_file.c +++ b/bin/gensquashfs/src/fstree_from_file.c @@ -273,7 +273,8 @@ out_desc: return -1; } -int fstree_from_file_stream(fstree_t *fs, istream_t *fp, const char *basepath) +int fstree_from_file_stream(fstree_t *fs, sqfs_istream_t *fp, + const char *basepath) { const char *filename; size_t line_num = 1; @@ -309,7 +310,7 @@ fail_line: int fstree_from_file(fstree_t *fs, const char *filename, const char *basepath) { - istream_t *fp; + sqfs_istream_t *fp; int ret; fp = istream_open_file(filename); -- cgit v1.2.3