diff options
author | svn2git <svn2git@FreeBSD.org> | 1994-07-01 08:00:00 +0000 |
---|---|---|
committer | svn2git <svn2git@FreeBSD.org> | 1994-07-01 08:00:00 +0000 |
commit | 5e0e9b99dc3fc0ecd49d929db0d57c784b66f481 (patch) | |
tree | e779b5a6edddbb949b7990751b12d6f25304ba86 /lib/libpthread/stdio/fflush.c | |
parent | a16f65c7d117419bd266c28a1901ef129a337569 (diff) |
Diffstat (limited to 'lib/libpthread/stdio/fflush.c')
-rw-r--r-- | lib/libpthread/stdio/fflush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/stdio/fflush.c b/lib/libpthread/stdio/fflush.c index b7f66c3b4a133..127040f0298ee 100644 --- a/lib/libpthread/stdio/fflush.c +++ b/lib/libpthread/stdio/fflush.c @@ -36,7 +36,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)fflush.c 5.1 (Berkeley) 1/20/91";*/ -static char *rcsid = "$Id: fflush.c,v 1.1 1994/01/30 04:24:37 proven Exp $"; +static char *rcsid = "$Id: fflush.c,v 1.2 1994/04/09 15:37:44 ats Exp $"; #endif /* LIBC_SCCS and not lint */ #include <pthread.h> @@ -51,7 +51,7 @@ fflush(fp) int retval; if (fp == NULL) - return (__swalk_sflush); + return (__swalk_sflush()); flockfile(fp); if ((fp->_flags & (__SWR | __SRW)) == 0) { |