From dc9a04c6be7d4e58dff2ee889be660b43baeca67 Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Sat, 2 Aug 2008 19:58:23 +0200 Subject: [PATCH] Use correct type specification in binary construction. Found by Dialyzer. --- lib/etorrent-1.0/src/etorrent_peer_communication.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/etorrent-1.0/src/etorrent_peer_communication.erl b/lib/etorrent-1.0/src/etorrent_peer_communication.erl index 4498fe0..155a04c 100644 --- a/lib/etorrent-1.0/src/etorrent_peer_communication.erl +++ b/lib/etorrent-1.0/src/etorrent_peer_communication.erl @@ -131,7 +131,7 @@ send_message(Rate, Socket, Message) -> <>; {allowed_fast, FastSet} -> BinFastSet = encode_fastset(FastSet), - <> + <> end, Sz = size(Datagram), Res = gen_tcp:send(Socket, <>), -- 2.11.4.GIT