diff options
author | Tamar Christina <tamar@zhox.com> | 2020-06-24 22:25:41 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-07-15 16:41:04 -0400 |
commit | ded58a037774147073366ff2dfdc8965e02a96e5 (patch) | |
tree | d858677e5f803726329c9e9f5572e6a56ac92b5c /includes | |
parent | 3bd415721672da9aa88c4528df8ba15bc616f3be (diff) | |
download | haskell-ded58a037774147073366ff2dfdc8965e02a96e5.tar.gz |
winio: update lockfile signature and remove mistaken symbol in rts.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/FileLock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/rts/FileLock.h b/includes/rts/FileLock.h index baf9f680fb..69df911595 100644 --- a/includes/rts/FileLock.h +++ b/includes/rts/FileLock.h @@ -33,5 +33,5 @@ /* No valid FD would be negative, so use a word instead of int so the value is compatible with a Windows handle. */ -int lockFile(StgWord id, StgWord64 dev, StgWord64 ino, int for_writing); -int unlockFile(StgWord id); +int lockFile(StgWord64 id, StgWord64 dev, StgWord64 ino, int for_writing); +int unlockFile(StgWord64 id); |