diff options
author | Austin Seipp <austin@well-typed.com> | 2014-07-21 20:24:28 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-28 09:29:15 -0500 |
commit | a4aa6bebecdd498799399ddc0d37755aa637cd7c (patch) | |
tree | b4c8d9b9ec48dd3d96474bafa758cd56ae1450da | |
parent | 4f5966b3edd62997552d2ebe371542861ed81405 (diff) | |
download | haskell-a4aa6bebecdd498799399ddc0d37755aa637cd7c.tar.gz |
rts: detab/dewhitespace FileLock.c
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r-- | rts/FileLock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/FileLock.c b/rts/FileLock.c index 44ff67140c..3a05204932 100644 --- a/rts/FileLock.c +++ b/rts/FileLock.c @@ -5,7 +5,7 @@ * File locking support as required by Haskell * * ---------------------------------------------------------------------------*/ - + #include "PosixSource.h" #include "Rts.h" @@ -120,7 +120,7 @@ unlockFile(int fd) lock = lookupHashTable(fd_hash, fd); if (lock == NULL) { - // errorBelch("unlockFile: fd %d not found", fd); + // errorBelch("unlockFile: fd %d not found", fd); // This is normal: we didn't know when calling unlockFile // whether this FD referred to a locked file or not. RELEASE_LOCK(&file_lock_mutex); |