diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-11 23:27:16 +0200 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-06-15 13:38:25 +0200 | 
| commit | 63bc750fecb00fc5878ca889204fc65510893778 (patch) | |
| tree | f3a8280ce30308e6bd86e534df19599587ce5914 /bin/rdsquashfs/src | |
| parent | d8a01253aba94759aae2bbc78e9103843f28dd78 (diff) | |
libio: remove single line wrapper functions
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/rdsquashfs/src')
| -rw-r--r-- | bin/rdsquashfs/src/fill_files.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rdsquashfs/src/fill_files.c b/bin/rdsquashfs/src/fill_files.c index 08e11f5..afc790e 100644 --- a/bin/rdsquashfs/src/fill_files.c +++ b/bin/rdsquashfs/src/fill_files.c @@ -155,7 +155,7 @@ static int fill_files(sqfs_data_reader_t *data, int flags)  		ret = sqfs_data_reader_dump(files[i].path, data, files[i].inode,  					    fp, block_size);  		if (ret == 0) -			ret = ostream_flush(fp); +			ret = fp->flush(fp);  		sqfs_drop(fp);  		if (ret)  | 
