summaryrefslogtreecommitdiff
path: root/src/Crypto
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2018-12-02 15:53:35 -0500
committerJoe Crayne <joe@jerkface.net>2018-12-16 14:08:26 -0500
commite64a0efd2ca29257c189343b6dc75f6bee29d66d (patch)
tree3cdef723ca371c7a0be5a851a9d0022d7cfc6fab /src/Crypto
parente15b8709e5091808a50630372f278fcbd844d638 (diff)
Tox TCP client transport.
Diffstat (limited to 'src/Crypto')
-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