summaryrefslogtreecommitdiff
path: root/toxav
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-10 13:39:07 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-10 18:57:37 +0000
commit54ec162558f203242639b382eea6e0085300249c (patch)
tree5321d67bbc143ea3caa4e9e9048ffc71e40b0c14 /toxav
parenta3079e82ddda90055d7247f000a8e9afa7f8a5c5 (diff)
Fix formatting in some C files.
Also replace &(x) with &x for consistency.
Diffstat (limited to 'toxav')
-rw-r--r--toxav/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index 350eeacd..2f50324e 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -206,7 +206,7 @@ static bool chloss(const RTPSession *session, const struct RTPHeader *header)
206 fprintf(stderr, "Lost packet\n"); 206 fprintf(stderr, "Lost packet\n");
207 207
208 while (lost --) { 208 while (lost --) {
209 bwc_add_lost(session->bwc , 0); 209 bwc_add_lost(session->bwc, 0);
210 } 210 }
211 211
212 return true; 212 return true;