summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 06:14:53 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:48:38 +0300
commit9e7dfe3fa34ca05fb63cd34369f7c847b777516d (patch)
tree8eaf736355431908c87aab9c28e0b7c1fb4f29aa /stream/stream.c
parentd9aa368a6d8dcbea2cd03b6c2a6c2e6df5fc16ce (diff)
downloadmpv-9e7dfe3fa34ca05fb63cd34369f7c847b777516d.tar.bz2
mpv-9e7dfe3fa34ca05fb63cd34369f7c847b777516d.tar.xz
Mark some functions static
These functions aren't used outside their file and have no prototype in any header. Based on a forgotten patch from 2006 by Stefan Huehner, (stefan huehner org).
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 42ceff1934..f9ce23cfb8 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -121,7 +121,7 @@ static const stream_info_t* const auto_open_streams[] = {
NULL
};
-stream_t* open_stream_plugin(const stream_info_t* sinfo,char* filename,int mode,
+static stream_t* open_stream_plugin(const stream_info_t* sinfo,char* filename,int mode,
char** options, int* file_format, int* ret,
char** redirected_url) {
void* arg = NULL;