From 0f86f6c9a1979b1902f879071d21d0cbff3f7527 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 20 Aug 1996 21:55:39 +0000 Subject: (line_wrap_stream): Initialize D->seek. --- stdio/linewrap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stdio/linewrap.c b/stdio/linewrap.c index 37780d21a3..e8fd851298 100644 --- a/stdio/linewrap.c +++ b/stdio/linewrap.c @@ -346,6 +346,7 @@ line_wrap_stream (FILE *stream, size_t lmargin, size_t rmargin, ssize_t wmargin) d->output = stream->__room_funcs.__output; d->close = stream->__io_funcs.__close; d->fileno = stream->__io_funcs.__fileno; + d->seek = stream->__io_funcs.__seek; /* Take over the stream. */ wrap_stream (stream, d); -- cgit v1.2.3