diff options
author | Diego Biurrun | 2010-01-04 17:55:52 +0000 |
---|---|---|
committer | Diego Biurrun | 2010-01-04 17:55:52 +0000 |
commit | 7f6a384a4f59f06ecb4907b6c65bf36c31502b79 (patch) | |
tree | b31ccf6abc9f1e480bec96ad194a18077b41d7ac /ffserver.c | |
parent | abf649c777244f4e0b0994ba11447658d4f0ffb7 (diff) |
Mark http_log() as static; it is only used in this file.
Originally committed as revision 21017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c index bbe65b438d..ab4fba6143 100644 --- a/ffserver.c +++ b/ffserver.c @@ -344,7 +344,7 @@ static void http_vlog(const char *fmt, va_list vargs) } } -void __attribute__ ((format (printf, 1, 2))) http_log(const char *fmt, ...) +static void __attribute__ ((format (printf, 1, 2))) http_log(const char *fmt, ...) { va_list vargs; va_start(vargs, fmt); |