aboutsummaryrefslogtreecommitdiff
path: root/libio/rewind.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/rewind.c')
-rw-r--r--libio/rewind.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libio/rewind.c b/libio/rewind.c
index bce27575fd..fb6afbc77a 100644
--- a/libio/rewind.c
+++ b/libio/rewind.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 1996, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU IO Library.
This library is free software; you can redistribute it and/or
@@ -34,5 +34,6 @@ rewind (fp)
_IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp);
_IO_flockfile (fp);
_IO_rewind (fp);
- _IO_cleanup_region_end (1);
+ _IO_funlockfile (fp);
+ _IO_cleanup_region_end (0);
}