aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-09 13:53:53 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-09 13:53:53 +0200
commit115ba7e0830a00a7b0bce5887c8ffeba78e3ab53 (patch)
treed376e30d5e830fc6292480203e7e39a6f9017243 /include
parent9a4110f3c205107a3a48a0e48b760abf3cd1f3bc (diff)
libio: remove eof flag from istream_t interface
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/io/istream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/io/istream.h b/include/io/istream.h
index 06e8a3b..f091aa1 100644
--- a/include/io/istream.h
+++ b/include/io/istream.h
@@ -21,8 +21,6 @@ typedef struct istream_t {
sqfs_object_t base;
size_t buffer_used;
- bool eof;
-
const sqfs_u8 *buffer;
int (*precache)(struct istream_t *strm);