From 5ba49381b9cb3fe28771958e5d84c9fc1de1e6cf Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 21 Oct 2015 06:27:36 -0700 Subject: Correction in error message on unimplemented seek. * stream.c (unimpl_seek): Function should identify itself as seek-stream, not seek. --- stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream.c') diff --git a/stream.c b/stream.c index 375ca684..8b2999c6 100644 --- a/stream.c +++ b/stream.c @@ -153,7 +153,7 @@ static noreturn val unimpl_unget_byte(val stream, int byte) static noreturn val unimpl_seek(val stream, cnum off, enum strm_whence whence) { - unimpl(stream, lit("seek")); + unimpl(stream, lit("seek-stream")); } static val null_put_string(val stream, val str) -- cgit v1.2.3