git » libjio » commit 30c4581

There's a typo in ansi.c, where the wrapper for rewind() is called frewind() instead of jrewind(). Fix it.

author Alberto Bertogli
2004-06-03 03:28:19 UTC
committer Alberto Bertogli
2007-07-15 13:02:29 UTC
parent c561480b0ba9f5eea86e15bcd734281597c3a951

There's a typo in ansi.c, where the wrapper for rewind() is called frewind() instead of jrewind(). Fix it.

There's a typo in ansi.c, where the wrapper for rewind() is called frewind()
instead of jrewind(). Fix it.

ansi.c +1 -1

diff --git a/ansi.c b/ansi.c
index b79f38a..054503b 100644
--- a/ansi.c
+++ b/ansi.c
@@ -191,7 +191,7 @@ int jftell(struct jfs *stream)
 }
 
 /* rewind wrapper */
-void frewind(struct jfs *stream)
+void jrewind(struct jfs *stream)
 {
 	lseek(stream->fd, 0, SEEK_SET);
 }