diff options
| author | christos <christos@NetBSD.org> | 1997-10-08 04:14:40 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1997-10-08 04:14:40 +0000 |
| commit | d94d1f67952f5121e4ec5a173d416adf8110b41d (patch) | |
| tree | 38685f5d434a7845dfcf57cea762a62d19c9ef61 /lib/libpthread/stdio | |
| parent | c36405f069184d741717aef6544968ba667305d0 (diff) | |
Wow, call the function, don't just mention its name!
Diffstat (limited to 'lib/libpthread/stdio')
| -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 ed2270e4748..f204cc76b64 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/02/07 22:05:33 proven Exp $"; +static char *rcsid = "$Id: fflush.c,v 1.2 1997/10/08 04:14:40 christos 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) { |
