summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
authorJfreegman <jfreegman@gmail.com>2015-11-04 21:00:00 -0500
committerJfreegman <jfreegman@gmail.com>2015-11-04 21:00:00 -0500
commitc019c6236ecb5a4801c86c82479d27054a6f0a3a (patch)
tree8fade20ef73920e27e62b9c4069765955e5f38c0 /toxav/rtp.c
parent6a494e2cbdd146bb13185d8220061322661a5f5a (diff)
Prevent debug message from spamming stdout
Diffstat (limited to 'toxav/rtp.c')
-rw-r--r--toxav/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index 1813725a..44114fff 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -196,7 +196,7 @@ bool chloss (const RTPSession *session, const struct RTPHeader *header)
196 (session->rsequnum + 65535) - hosq : 196 (session->rsequnum + 65535) - hosq :
197 session->rsequnum - hosq; 197 session->rsequnum - hosq;
198 198
199 puts ("Lost packet"); 199 fprintf (stderr, "Lost packet\n");
200 200
201 while (lost --) 201 while (lost --)
202 bwc_add_lost(session->bwc , 0); 202 bwc_add_lost(session->bwc , 0);