summaryrefslogtreecommitdiff
path: root/src/Crypto/Tox.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Crypto/Tox.hs')
-rw-r--r--src/Crypto/Tox.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/Tox.hs b/src/Crypto/Tox.hs
index a7f1ae83..1b3d5e5c 100644
--- a/src/Crypto/Tox.hs
+++ b/src/Crypto/Tox.hs
@@ -169,7 +169,7 @@ authAndBytes (Encrypted bs) = (auth,bs')
169-- independently of the value, or the length depends on the value. 169-- independently of the value, or the length depends on the value.
170data Size a 170data Size a
171 = VarSize (a -> Int) 171 = VarSize (a -> Int)
172 | ConstSize !Int 172 | ConstSize { constSize :: !Int }
173 deriving Typeable 173 deriving Typeable
174 174
175instance Contravariant Size where 175instance Contravariant Size where