conf: config_param_free() not necessary for export.

This commit is contained in:
Avuton Olrich 2009-03-29 10:58:16 -07:00 committed by Max Kellermann
parent 96ab110b44
commit 6405db931b
2 changed files with 1 additions and 3 deletions

View File

@ -87,7 +87,7 @@ newConfigParam(const char *value, int line)
return ret;
}
void
static void
config_param_free(gpointer data, G_GNUC_UNUSED gpointer user_data)
{
struct config_param *param = data;

View File

@ -153,8 +153,6 @@ config_get_block_bool(const struct config_param *param, const char *name,
struct config_param *
newConfigParam(const char *value, int line);
void config_param_free(gpointer data, gpointer user_data);
void
addBlockParam(struct config_param *param, const char *name, const char *value, int line);