ports/net-im/libjingle/files/patch-talk__session__phone__voicechannel.cc
Mario Sergio Fujikawa Ferreira 7e82c2a123 o net-im/libjingle source code makes assumptions about some of the
types and the architecture it is being built on.
o Fix such a mistake brought up by the FreeBSD ports' building
  cluster on !i386 ARCHs.
o Remove BROKEN status on !i386 ARCHs.
2006-03-15 18:34:59 +00:00

11 lines
529 B
C++

--- talk/session/phone/voicechannel.cc.orig Fri Mar 3 08:39:15 2006
+++ talk/session/phone/voicechannel.cc Fri Mar 3 08:39:36 2006
@@ -159,7 +159,7 @@
channel_->OnPacketReceived(data, (int)len);
}
-void VoiceChannel::SendPacket(const void *data, unsigned int len) {
+void VoiceChannel::SendPacket(const void *data, size_t len) {
// SendPacket gets called from MediaEngine; send to socket
// MediaEngine will call us on a random thread. The Send operation on the socket is
// special in that it can handle this.