From 7404ab9f0315df056427c503d1a0bf6e3e6be087 Mon Sep 17 00:00:00 2001 From: Kirill Ponomarev Date: Wed, 19 Jan 2005 13:36:52 +0000 Subject: Fix build on amd64, sparc64, ia64. PR: ports/76463 Submitted by: maintainer --- .../files/patch-src::data::file_chunk.cc | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 net-p2p/libtorrent/files/patch-src::data::file_chunk.cc (limited to 'net-p2p') diff --git a/net-p2p/libtorrent/files/patch-src::data::file_chunk.cc b/net-p2p/libtorrent/files/patch-src::data::file_chunk.cc new file mode 100644 index 000000000000..2589ee5d7a66 --- /dev/null +++ b/net-p2p/libtorrent/files/patch-src::data::file_chunk.cc @@ -0,0 +1,28 @@ +--- src/data/file_chunk.cc.orig Mon Jan 17 21:31:30 2005 ++++ src/data/file_chunk.cc Mon Jan 17 21:32:21 2005 +@@ -6,6 +6,7 @@ + #include + #include + #include ++#include + + namespace torrent { + +@@ -32,7 +33,7 @@ + std::stringstream s; + + s << "Tried to check incore status in FileChunk with out of range parameters or a NULL buffer (" +- << std::hex << '(' << (unsigned int)m_begin << ',' << (unsigned int)m_end << ')'; ++ << std::hex << '(' << m_begin << ',' << m_end << ')'; + + throw internal_error(s.str()); + } +@@ -63,7 +64,7 @@ + std::stringstream s; + + s << "Tried to advise FileChunk with out of range parameters" +- << std::hex << '(' << (unsigned int)m_begin << ',' << (unsigned int)m_end << ',' << offset << ',' << len << ')'; ++ << std::hex << '(' << m_begin << ',' << m_end << ',' << offset << ',' << len << ')'; + + throw internal_error(s.str()); + } -- cgit v1.2.3