aboutsummaryrefslogtreecommitdiff
path: root/src/output/null_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-25 18:34:02 +0100
committerMax Kellermann <max@duempel.org>2009-02-25 18:34:02 +0100
commitdcd84c19cdb71cfb594851995cdaffdf39453bdc (patch)
treead8dd47f69aafab71e36c5975db03a26f38a3f33 /src/output/null_plugin.c
parent0cf4f09e4ffb4866eba5c4055fabfe1e60c780e4 (diff)
output_plugin: don't pass audio_output object to method init()
audio_output_get_name() has been removed, which was the only function left in output_api.h. The output plugin doesn't need the audio_output object at all, remove the parameter from the init() method.
Diffstat (limited to 'src/output/null_plugin.c')
-rw-r--r--src/output/null_plugin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/output/null_plugin.c b/src/output/null_plugin.c
index a60d2b51..a10f5e45 100644
--- a/src/output/null_plugin.c
+++ b/src/output/null_plugin.c
@@ -30,8 +30,7 @@ struct null_data {
};
static void *
-null_init(G_GNUC_UNUSED struct audio_output *audio_output,
- G_GNUC_UNUSED const struct audio_format *audio_format,
+null_init(G_GNUC_UNUSED const struct audio_format *audio_format,
G_GNUC_UNUSED const struct config_param *param)
{
struct null_data *nd = g_new(struct null_data, 1);