1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Patch from gtgbr@gmx.net to fix function definition storage type.

svn path=/icecast/trunk/icecast/; revision=10613
This commit is contained in:
Michael Smith 2005-12-17 12:15:09 +00:00
parent b0744c5f8a
commit 4c3d56743d
2 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ xmlDocPtr admin_build_sourcelist (const char *mount)
return(doc);
}
void admin_send_response(xmlDocPtr doc, client_t *client,
static void admin_send_response(xmlDocPtr doc, client_t *client,
int response, char *xslt_template)
{
if (response == RAW)

View File

@ -181,7 +181,7 @@ int format_ogg_get_plugin (source_t *source)
}
void format_ogg_free_plugin (format_plugin_t *plugin)
static void format_ogg_free_plugin (format_plugin_t *plugin)
{
ogg_state_t *state = plugin->_state;