From 32b232ecee34c0280f7becdfba99467253d6db50 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 11 Mar 2007 19:17:30 +0100 Subject: [PATCH] ogg_afh.c: make two functions static --- ogg_afh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ogg_afh.c b/ogg_afh.c index 28ab42a2..3447f547 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -51,13 +51,13 @@ static int cb_close(__a_unused void *datasource) return 0; } -long cb_tell(void *datasource) +static long cb_tell(void *datasource) { FILE *f = datasource; return ftell(f); } -int ogg_open_callbacks(void *datasource, OggVorbis_File *vf, ov_callbacks c) +static int ogg_open_callbacks(void *datasource, OggVorbis_File *vf, ov_callbacks c) { int ret = ov_open_callbacks(datasource, vf, NULL, /* no initial buffer */ -- 2.39.2