summaryrefslogtreecommitdiff
path: root/Logs/Chunk
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-08-01 16:30:23 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-08-01 16:30:33 -0400
commit9f1004c76828cfac946780357b0e296012dcc7fa (patch)
tree484561825b16bacb967a3db5bcf6887fb1fa3c89 /Logs/Chunk
parent01c99426c24dfb7c12b803c932b03934b829a352 (diff)
deriving Show
Diffstat (limited to 'Logs/Chunk')
-rw-r--r--Logs/Chunk/Pure.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Logs/Chunk/Pure.hs b/Logs/Chunk/Pure.hs
index 080a5a08b..26fdd63c2 100644
--- a/Logs/Chunk/Pure.hs
+++ b/Logs/Chunk/Pure.hs
@@ -21,7 +21,7 @@ import Data.Int
-- Currently chunks are all fixed size, but other chunking methods
-- may be added.
data ChunkMethod = FixedSizeChunks ChunkSize | UnknownChunks String
- deriving (Ord, Eq)
+ deriving (Ord, Eq, Show)
type ChunkSize = Int64