summaryrefslogtreecommitdiffstats
path: root/src/sliding_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sliding_buffer.h')
-rw-r--r--src/sliding_buffer.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sliding_buffer.h b/src/sliding_buffer.h
index 148b369..83c7919 100644
--- a/src/sliding_buffer.h
+++ b/src/sliding_buffer.h
@@ -12,8 +12,6 @@ typedef struct {
size_t maxsize; /* max size of buffer */
size_t bufsize; /* current size of buffer */
int eof; /* true if there is no more to read */
- size_t extent; /* if non-zero, max number of bytes to read */
- size_t extent_used; /* how much we have already read */
} sliding_buffer_t;