summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rts/FileLock.c4
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);