From fe53a376a3c2d6e7aa14c73df56df816e2d89d6f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 4 Aug 2013 13:54:14 +0200 Subject: PlaylistPlugin: pass config_param reference --- src/PlaylistPlugin.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/PlaylistPlugin.hxx') diff --git a/src/PlaylistPlugin.hxx b/src/PlaylistPlugin.hxx index ea39f6258..069b818ba 100644 --- a/src/PlaylistPlugin.hxx +++ b/src/PlaylistPlugin.hxx @@ -55,7 +55,7 @@ struct playlist_plugin { * @return true if the plugin was initialized successfully, * false if the plugin is not available */ - bool (*init)(const struct config_param *param); + bool (*init)(const config_param ¶m); /** * Deinitialize a plugin which was initialized successfully. @@ -96,7 +96,7 @@ struct playlist_plugin { */ static inline bool playlist_plugin_init(const struct playlist_plugin *plugin, - const struct config_param *param) + const config_param ¶m) { return plugin->init != NULL ? plugin->init(param) -- cgit v1.2.3