Skip to content

Commit d3b5f4a

Browse files
Fix windows build break due to unsafeExtend change
1 parent 64a473f commit d3b5f4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • core/src/Streamly/Internal/FileSystem/Windows

core/src/Streamly/Internal/FileSystem/Windows/ReadDir.hsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ newtype DirStream =
156156

157157
openDirStream :: WindowsPath -> IO DirStream
158158
openDirStream p = do
159-
let path = Path.unsafeAppend p $ Path.unsafeFromString "*"
159+
let path = Path.unsafeExtend p $ Path.unsafeFromString "*"
160160
fp_finddata <- mallocForeignPtrBytes (# const sizeof(WIN32_FIND_DATAW) )
161161
withForeignPtr fp_finddata $ \dataPtr -> do
162162
handle <-

0 commit comments

Comments
 (0)