summaryrefslogtreecommitdiffstats
path: root/stream/rtp.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 08:43:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 08:43:15 +0000
commitc6575940499edb3107ec43bf196acde06ebd39c8 (patch)
tree0a619124b9849be34d45a5e78d731305122c58d0 /stream/rtp.c
parentad603f5559ce649c6d06d746a7d361d2d0188ad4 (diff)
downloadmpv-c6575940499edb3107ec43bf196acde06ebd39c8.tar.bz2
mpv-c6575940499edb3107ec43bf196acde06ebd39c8.tar.xz
cosmetics: Remove useless parentheses from return statements.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26788 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/rtp.c')
-rw-r--r--stream/rtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/rtp.c b/stream/rtp.c
index db522df9b5..1c31bef4a1 100644
--- a/stream/rtp.c
+++ b/stream/rtp.c
@@ -213,7 +213,7 @@ int read_rtp_from_server(int fd, char *buffer, int length) {
mp_msg(MSGT_NETWORK, MSGL_ERR, "Got empty packet from RTP cache!?\n");
}
- return(length);
+ return length;
}
static int getrtp2(int fd, struct rtpheader *rh, char** data, int* lengthData) {
@@ -251,5 +251,5 @@ static int getrtp2(int fd, struct rtpheader *rh, char** data, int* lengthData) {
// mp_msg(MSGT_NETWORK,MSGL_DBG2,"Reading rtp: v=%x p=%x x=%x cc=%x m=%x pt=%x seq=%x ts=%x lgth=%d\n",rh->b.v,rh->b.p,rh->b.x,rh->b.cc,rh->b.m,rh->b.pt,rh->b.sequence,rh->timestamp,lengthPacket);
- return(0);
+ return 0;
}