summaryrefslogtreecommitdiff
path: root/src/input/mms.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-08-25 21:51:37 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-08-25 21:51:37 +0000
commitbabb07bcbec3674a3f542cf6ae3f2d6b212a3ed4 (patch)
tree3074007521ca0f6f2b730ac3e85003bdac8d4fdd /src/input/mms.c
parentca053acfc8a4a11274f1f0978bd0f52b9ac8cc06 (diff)
downloadxine-lib-babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4.tar.gz
xine-lib-babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4.tar.bz2
Reduce GCC verbosity (various prototype declaration fixes). ffmpeg, wine and fft*post are untouched (fft: for now).
CVS patchset: 5310 CVS date: 2003/08/25 21:51:37
Diffstat (limited to 'src/input/mms.c')
-rw-r--r--src/input/mms.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input/mms.c b/src/input/mms.c
index 3b2b0b7f6..fd468fc01 100644
--- a/src/input/mms.c
+++ b/src/input/mms.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: mms.c,v 1.29 2003/07/10 22:43:41 tmattern Exp $
+ * $Id: mms.c,v 1.30 2003/08/25 21:51:39 f1rmb Exp $
*
* MMS over TCP protocol
* based on work from major mms
@@ -660,7 +660,7 @@ static void report_progress (xine_stream_t *stream, int p) {
* TODO: error messages
* returns 1 on error
*/
-int mms_parse_url(mms_t *this) {
+static int mms_parse_url(mms_t *this) {
int proto_len;
char *hostend;
char *forport;
@@ -712,7 +712,7 @@ int mms_parse_url(mms_t *this) {
/*
* returns 1 on error
*/
-int mms_tcp_connect(mms_t *this) {
+static int mms_tcp_connect(mms_t *this) {
int progress, res;
/*
* try to connect
@@ -745,7 +745,7 @@ int mms_tcp_connect(mms_t *this) {
return 0;
}
-void mms_gen_guid(char guid[]) {
+static void mms_gen_guid(char guid[]) {
static char digit[16] = "0123456789ABCDEF";
int i = 0;