Commit 642d4a1a authored by Diego Pettenò's avatar Diego Pettenò Committed by Reimar Döffinger

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
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment