diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2007-03-18 09:49:25 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-03-18 09:49:25 +0000 |
commit | 642d4a1a160c7ee90e4b38e268ebe49561fec4c1 (patch) | |
tree | d1dcba5ad2d55c25a890224f0c4334cb110b57ec /libavformat | |
parent | 7c9712335bba0fffca3bd98fc02ba1141e3c32b8 (diff) | |
download | ffmpeg-642d4a1a160c7ee90e4b38e268ebe49561fec4c1.tar.gz |
Remove parameter unused in format string.
Patch by Diego Petten [flameeyes gentoo org]
Originally committed as revision 8438 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpproto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index c2f92b6e88..4d32e667da 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -88,7 +88,7 @@ static void build_udp_url(char *buf, int buf_size, if (local_port >= 0) url_add_option(buf, buf_size, "localport=%d", local_port); if (multicast) - url_add_option(buf, buf_size, "multicast=1", multicast); + url_add_option(buf, buf_size, "multicast=1"); if (ttl >= 0) url_add_option(buf, buf_size, "ttl=%d", ttl); } |