summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/rtp.c')
-rwxr-xr-xtoxav/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index 9b8cd652..ef5d0928 100755
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -751,7 +751,7 @@ int rtp_send_msg ( RTPSession *session, Messenger *messenger, const uint8_t *dat
751 751
752 /*if ( full_length != sendpacket ( messenger->net, *((IP_Port*) &session->dest), _send_data, full_length) ) {*/ 752 /*if ( full_length != sendpacket ( messenger->net, *((IP_Port*) &session->dest), _send_data, full_length) ) {*/
753 if ( full_length != send_custom_user_packet(messenger, session->dest, _send_data, full_length) ) { 753 if ( full_length != send_custom_user_packet(messenger, session->dest, _send_data, full_length) ) {
754 printf("Rtp error: %s\n", strerror(errno)); 754 fprintf(stderr, "Rtp error: %s\n", strerror(errno));
755 return -1; 755 return -1;
756 } 756 }
757 757