summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fopen.c
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-09-02 19:10:10 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-09-02 19:10:10 +0000
commit924888f977ae2a2b4025a530e2b63d0b8a62e758 (patch)
treebe15c0be354e09f766522b411a1ad2af5d566a99 /lib/libc/stdio/fopen.c
parent9c552a1fd7aa383ebd2d1e6fcb549fe07162074d (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/fopen.c')
-rw-r--r--lib/libc/stdio/fopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fopen.c b/lib/libc/stdio/fopen.c
index f09fe8a6e552..709316d36c9c 100644
--- a/lib/libc/stdio/fopen.c
+++ b/lib/libc/stdio/fopen.c
@@ -85,6 +85,6 @@ fopen(file, mode)
* fseek and ftell.)
*/
if (oflags & O_APPEND)
- (void) __sseek((void *)fp, (fpos_t)0, SEEK_END);
+ (void)_sseek(fp, (fpos_t)0, SEEK_END);
return (fp);
}