Forgot to mark one function as static

Original commit message from CVS:
Forgot to mark one function as static
This commit is contained in:
Christophe Fergeau 2003-12-07 14:48:09 +00:00
parent bac7d40601
commit 396a5c8129

View file

@ -475,9 +475,9 @@ gst_flacenc_write_callback (const FLAC__SeekableStreamEncoder *encoder,
return FLAC__STREAM_ENCODER_OK;
}
void add_one_tag (const GstTagList *list,
const gchar *tag,
gpointer user_data)
static void
add_one_tag (const GstTagList *list, const gchar *tag,
gpointer user_data)
{
GList *comments;
GList *it;