[xiph-commits] r10613 - icecast/trunk/icecast/src
msmith at svn.xiph.org
msmith at svn.xiph.org
Sat Dec 17 04:15:13 PST 2005
Author: msmith
Date: 2005-12-17 04:15:09 -0800 (Sat, 17 Dec 2005)
New Revision: 10613
Modified:
icecast/trunk/icecast/src/admin.c
icecast/trunk/icecast/src/format_ogg.c
Log:
Patch from gtgbr at gmx.net to fix function definition storage type.
Modified: icecast/trunk/icecast/src/admin.c
===================================================================
--- icecast/trunk/icecast/src/admin.c 2005-12-17 09:12:10 UTC (rev 10612)
+++ icecast/trunk/icecast/src/admin.c 2005-12-17 12:15:09 UTC (rev 10613)
@@ -267,7 +267,7 @@
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)
Modified: icecast/trunk/icecast/src/format_ogg.c
===================================================================
--- icecast/trunk/icecast/src/format_ogg.c 2005-12-17 09:12:10 UTC (rev 10612)
+++ icecast/trunk/icecast/src/format_ogg.c 2005-12-17 12:15:09 UTC (rev 10613)
@@ -181,7 +181,7 @@
}
-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;
More information about the commits
mailing list