summaryrefslogtreecommitdiff
path: root/src/Data/Torrent.hs
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-14 11:14:10 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-14 11:14:10 +0400
commit7328cad0379c2717317fb5b9b6d171110d7ffbeb (patch)
tree59cf86b3b7fc8b8005e6b008323f3d3f78821fc9 /src/Data/Torrent.hs
parent5cebc0486e4fff9e2ba25e1397e39fc998a397e0 (diff)
~ fix length type
Diffstat (limited to 'src/Data/Torrent.hs')
-rw-r--r--src/Data/Torrent.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Data/Torrent.hs b/src/Data/Torrent.hs
index 3aad2827..f38732f5 100644
--- a/src/Data/Torrent.hs
+++ b/src/Data/Torrent.hs
@@ -64,7 +64,7 @@ data Torrent = Torrent {
64-- | Info part of the .torrent file contain info about each content file. 64-- | Info part of the .torrent file contain info about each content file.
65data TorrentInfo = 65data TorrentInfo =
66 SingleFile { 66 SingleFile {
67 tLength :: Int 67 tLength :: Integer
68 -- ^ Length of the file in bytes. 68 -- ^ Length of the file in bytes.
69 69
70 , tMD5sum :: Maybe ByteString 70 , tMD5sum :: Maybe ByteString