diff options
Diffstat (limited to 'libio/ioftell.c')
-rw-r--r-- | libio/ioftell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/ioftell.c b/libio/ioftell.c index ec3b1a2f2e..1fc7c55a51 100644 --- a/libio/ioftell.c +++ b/libio/ioftell.c @@ -32,7 +32,7 @@ _IO_ftell (fp) { _IO_pos_t pos; CHECK_FILE (fp, -1L); - __libc_cleanup_region_start (&_IO_funlockfile, fp); + __libc_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); _IO_flockfile (fp); pos = _IO_seekoff (fp, 0, _IO_seek_cur, 0); __libc_cleanup_region_end (1); |