From bdc1c5ee84977300265ea87d3cafa34fbcfc8a1d Mon Sep 17 00:00:00 2001 From: JamesP Date: Thu, 24 Sep 2015 09:03:03 +1000 Subject: [PATCH] change type of windows handles to Handle --- lib/pure/memfiles.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pure/memfiles.nim b/lib/pure/memfiles.nim index b128061fd8..633fd71eba 100644 --- a/lib/pure/memfiles.nim +++ b/lib/pure/memfiles.nim @@ -32,9 +32,9 @@ type size*: int ## size of the memory mapped file when defined(windows): - fHandle: int - mapHandle: int - wasOpened: bool + fHandle: Handle + mapHandle: Handle + wasOpened: bool ## only close if wasOpened else: handle: cint