# HG changeset patch # User diego # Date 1284028258 0 # Node ID 6c66a5ea013b2a9d67095fb3b5cfc24175f42513 # Parent d54834686eb006bd639240ad9d1cc6908cf76167 Move mime_type_table extern declaration to network.h, where it belongs. diff -r d54834686eb0 -r 6c66a5ea013b stream/http.c --- a/stream/http.c Thu Sep 09 05:05:43 2010 +0000 +++ b/stream/http.c Thu Sep 09 10:30:58 2010 +0000 @@ -43,7 +43,6 @@ #include "help_mp.h" -extern const mime_struct_t mime_type_table[]; extern int stream_cache_size; typedef struct { diff -r d54834686eb0 -r 6c66a5ea013b stream/network.h --- a/stream/network.h Thu Sep 09 05:05:43 2010 +0000 +++ b/stream/network.h Thu Sep 09 10:30:58 2010 +0000 @@ -59,6 +59,8 @@ int demuxer_type; } mime_struct_t; +extern const mime_struct_t mime_type_table[]; + extern char *cookies_file; extern char *network_password; extern char *network_referrer;