From 00f58f81e135853c64ea04499b013810d5699ef3 Mon Sep 17 00:00:00 2001
From: Doug Coleman <doug.coleman@gmail.com>
Date: Fri, 15 Jan 2010 21:17:47 -0600
Subject: [PATCH] Fix iota bug 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 cc6218a4ea..799b6dc4b2 100644
--- a/basis/io/files/info/windows/windows.factor
+++ b/basis/io/files/info/windows/windows.factor
@@ -162,7 +162,7 @@ M: winnt file-system-info ( path -- file-system-info )
         ret win32-error-string throw
     ] [
         names names-length *uint ushort heap-size * head
-        utf16n alien>string CHAR: \0 split
+        utf16n alien>string { CHAR: \0 } split
     ] if ;
 
 : find-first-volume ( -- string handle )