From: Andre Noll Date: Sun, 11 Mar 2007 18:17:30 +0000 (+0100) Subject: ogg_afh.c: make two functions static X-Git-Tag: v0.2.16~30 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=32b232ecee34c0280f7becdfba99467253d6db50;p=paraslash.git ogg_afh.c: make two functions static --- 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 */