summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-04-19 17:30:12 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-04-19 17:30:12 +0000
commit7b09814f57c25f4f48b1f070b6c849a4f3012bf5 (patch)
treeccfee3750c56b6c4fbd6281f1864b5fd3f5cf7dd
parent8909813ddd0a5d4c11f8e76c8736728c657ff781 (diff)
downloadxine-lib-7b09814f57c25f4f48b1f070b6c849a4f3012bf5.tar.gz
xine-lib-7b09814f57c25f4f48b1f070b6c849a4f3012bf5.tar.bz2
Relocate static specifiers to quieten compiler.
CVS patchset: 7972 CVS date: 2006/04/19 17:30:12
-rw-r--r--src/input/mms.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/mms.c b/src/input/mms.c
index f98e37605..aee2d2f5c 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.56 2005/04/21 19:02:43 mroi Exp $
+ * $Id: mms.c,v 1.57 2006/04/19 17:30:12 dsalt Exp $
*
* MMS over TCP protocol
* based on work from major mms
@@ -627,7 +627,7 @@ static void interp_asf_header (mms_t *this) {
}
}
-const static char *const mmst_proto_s[] = { "mms", "mmst", NULL };
+static const char *const mmst_proto_s[] = { "mms", "mmst", NULL };
static int mmst_valid_proto (char *proto) {
int i = 0;
@@ -710,7 +710,7 @@ static void mms_gen_guid(char guid[]) {
/*
* return 0 on error
*/
-int static mms_choose_best_streams(mms_t *this) {
+static int mms_choose_best_streams(mms_t *this) {
int i;
int video_stream = 0;
int audio_stream = 0;