diff options
Diffstat (limited to 'ghc/lib/std/cbits/getLock.c')
-rw-r--r-- | ghc/lib/std/cbits/getLock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/lib/std/cbits/getLock.c b/ghc/lib/std/cbits/getLock.c index 143da77aed..7a82fbeb70 100644 --- a/ghc/lib/std/cbits/getLock.c +++ b/ghc/lib/std/cbits/getLock.c @@ -1,7 +1,7 @@ /* * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998 * - * $Id: getLock.c,v 1.8 2001/03/01 12:25:33 rrt Exp $ + * $Id: getLock.c,v 1.9 2001/04/02 16:10:32 rrt Exp $ * * stdin/stout/stderr Runtime Support */ @@ -48,9 +48,9 @@ int for_writing; int exclusive; { int i; - struct Stat sb; + struct stat sb; - while (Fstat(fd, &sb) < 0) { + while (fstat(fd, &sb) < 0) { if (errno != EINTR) { #ifndef _WIN32 return -1; |