From 7f6a384a4f59f06ecb4907b6c65bf36c31502b79 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Mon, 4 Jan 2010 17:55:52 +0000
Subject: [PATCH] Mark http_log() as static; it is only used in this file.

Originally committed as revision 21017 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 ffserver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ffserver.c b/ffserver.c
index bbe65b438d0..ab4fba61435 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);
-- 
GitLab