From 50c897c082f766777134626b7e8571f0adc2a473 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 3 Mar 2012 20:02:48 -0400 Subject: [PATCH] tweak --- Remote/Directory.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Remote/Directory.hs b/Remote/Directory.hs index 6f7ce8cd62..d5394fe519 100644 --- a/Remote/Directory.hs +++ b/Remote/Directory.hs @@ -88,9 +88,7 @@ locations d k = map (d ) (keyPaths k) {- An infinite stream of chunks to use for a given file. -} chunkStream :: FilePath -> [FilePath] -chunkStream f = map tochunk [1 :: Integer ..] - where - tochunk n = f ++ ".chunk" ++ show n +chunkStream f = map (\n -> f ++ ".chunk" ++ show n) [1 :: Integer ..] {- A file that records the number of chunks used. -} chunkCount :: FilePath -> FilePath