From db793e06f69bebad5d3b02eac32573f1af2da846 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Oct 2015 19:50:06 -0700 Subject: [PATCH] io.files.windows: SetFilePointer takes a PLONG not a uint pointer. --- basis/io/files/windows/windows.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/io/files/windows/windows.factor b/basis/io/files/windows/windows.factor index 222f96ac31..1c83af35ec 100755 --- a/basis/io/files/windows/windows.factor +++ b/basis/io/files/windows/windows.factor @@ -263,7 +263,7 @@ M: windows init-stdio GetLastError ERROR_ALREADY_EXISTS = not ; : set-file-pointer ( handle length method -- ) - [ [ handle>> ] dip d>w/w uint ] dip SetFilePointer + [ [ handle>> ] dip d>w/w LONG ] dip SetFilePointer INVALID_SET_FILE_POINTER = [ "SetFilePointer failed" throw ] when ; M: windows (file-reader) ( path -- stream )