summaryrefslogtreecommitdiff
path: root/Annex
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-10-24 12:17:38 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-10-24 12:17:38 -0400
commit01a7a2471b05b6cde6f134dc70f1419d4d61bb9c (patch)
tree76174cc15a5639e20d722318fe92fd64e941f17f /Annex
parent309c433d691f277c24478cd4b654993b43d8a008 (diff)
windows build fix
Diffstat (limited to 'Annex')
-rw-r--r--Annex/Init.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Init.hs b/Annex/Init.hs
index 9a284e62b..63f27493b 100644
--- a/Annex/Init.hs
+++ b/Annex/Init.hs
@@ -152,7 +152,7 @@ probeCrippledFileSystem = do
probeCrippledFileSystem' :: FilePath -> IO (Bool, [String])
#ifdef mingw32_HOST_OS
-probeCrippledFileSystem' _ = return True
+probeCrippledFileSystem' _ = return (True, [])
#else
probeCrippledFileSystem' tmp = do
let f = tmp </> "gaprobe"