From 5c91a6755b6412c918e20ff4735ca30f38a12569 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 10 Feb 2003 09:35:32 +0000 Subject: * static,const,compiler warning cleanup Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtpproto.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/rtpproto.c') diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index 41823fc829..8473a2c8b2 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -71,7 +71,7 @@ int rtp_set_remote_url(URLContext *h, const char *uri) /* add option to url of the form: "http://host:port/path?option1=val1&option2=val2... */ -void url_add_option(char *buf, int buf_size, const char *fmt, ...) +static void url_add_option(char *buf, int buf_size, const char *fmt, ...) { char buf1[1024]; va_list ap; @@ -86,9 +86,9 @@ void url_add_option(char *buf, int buf_size, const char *fmt, ...) va_end(ap); } -void build_udp_url(char *buf, int buf_size, - const char *hostname, int port, - int local_port, int multicast, int ttl) +static void build_udp_url(char *buf, int buf_size, + const char *hostname, int port, + int local_port, int multicast, int ttl) { snprintf(buf, buf_size, "udp://%s:%d", hostname, port); if (local_port >= 0) -- cgit v1.2.3