From 6f2162b4713ab5e6c5181708590555b031d4ce2b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 19 Feb 2009 10:09:46 +0000 Subject: Mark functions only used within the test programs as static. Originally committed as revision 17454 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tests/audiogen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/audiogen.c') diff --git a/tests/audiogen.c b/tests/audiogen.c index f96110e968..38ca5dd22a 100644 --- a/tests/audiogen.c +++ b/tests/audiogen.c @@ -94,7 +94,7 @@ static int int_cos(int a) FILE *outfile; -void put_sample(int v) +static void put_sample(int v) { fputc(v & 0xff, outfile); fputc((v >> 8) & 0xff, outfile); -- cgit v1.2.3