summaryrefslogtreecommitdiff
path: root/lib/stream.h
diff options
context:
space:
mode:
authorajs <ajs>2005-02-24 16:02:53 +0000
committerajs <ajs>2005-02-24 16:02:53 +0000
commit81fb32404c942432d2bea1e50a4d53bf75fd0f70 (patch)
tree107d5d94061c110773c5b2985e383d2075bc6044 /lib/stream.h
parent0d7e9134d828d5aee8c83960bb706a726cdc2ec4 (diff)
2005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* stream.c: (stream_read_try) Log a warning message if a fatal I/O error occurs. (stream_fifo_new) Fix prototype. * stream.h: Fix prototype for stream_fifo_new (need void arg).
Diffstat (limited to 'lib/stream.h')
-rw-r--r--lib/stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream.h b/lib/stream.h
index 54a16740..1f6c3772 100644
--- a/lib/stream.h
+++ b/lib/stream.h
@@ -196,7 +196,7 @@ int stream_empty (struct stream *); /* is the stream empty? */
u_char *stream_pnt (struct stream *);
/* Stream fifo. */
-struct stream_fifo *stream_fifo_new ();
+struct stream_fifo *stream_fifo_new (void);
void stream_fifo_push (struct stream_fifo *fifo, struct stream *s);
struct stream *stream_fifo_pop (struct stream_fifo *fifo);
struct stream *stream_fifo_head (struct stream_fifo *fifo);