Mark http_log() as static; it is only used in this file.
authorDiego Biurrun <diego@biurrun.de>
Mon, 4 Jan 2010 17:55:52 +0000 (17:55 +0000)
committerDiego Biurrun <diego@biurrun.de>
Mon, 4 Jan 2010 17:55:52 +0000 (17:55 +0000)
Originally committed as revision 21017 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffserver.c

index bbe65b4..ab4fba6 100644 (file)
@@ -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);