From bd36fbb88666e9a236e3af7666481894a940e822 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Sat, 7 Nov 2009 22:23:39 -0600 Subject: [PATCH] typo in io.files.info.windows --- basis/io/files/info/windows/windows.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/io/files/info/windows/windows.factor b/basis/io/files/info/windows/windows.factor index 6bd3f77ffa..9f0e4534e9 100755 --- a/basis/io/files/info/windows/windows.factor +++ b/basis/io/files/info/windows/windows.factor @@ -177,7 +177,7 @@ M: winnt file-system-info ( path -- file-system-info ) handle buf buf-length FindNextVolume :> ret ret 0 = [ GetLastError ERROR_NO_MORE_FILES = - [ drop f ] [ win32-error-string throw ] if + [ f ] [ win32-error-string throw ] if ] [ buf utf16n alien>string ] if ;