Skip to content
Snippets Groups Projects
Commit 642d4a1a authored by Diego Pettenò's avatar Diego Pettenò Committed by Reimar Döffinger
Browse files

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
parent 7c971233
No related branches found
No related tags found
No related merge requests found
...@@ -88,7 +88,7 @@ static void build_udp_url(char *buf, int buf_size, ...@@ -88,7 +88,7 @@ static void build_udp_url(char *buf, int buf_size,
if (local_port >= 0) if (local_port >= 0)
url_add_option(buf, buf_size, "localport=%d", local_port); url_add_option(buf, buf_size, "localport=%d", local_port);
if (multicast) if (multicast)
url_add_option(buf, buf_size, "multicast=1", multicast); url_add_option(buf, buf_size, "multicast=1");
if (ttl >= 0) if (ttl >= 0)
url_add_option(buf, buf_size, "ttl=%d", ttl); url_add_option(buf, buf_size, "ttl=%d", ttl);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment