diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 13:47:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 14:07:50 +0200 |
commit | bf6ed643e01687ed21b3a21cb3f77a1042e22c15 (patch) | |
tree | ddd74a2f850d4469517ebbda07779ac45ed3ebb8 /src/InputPlugin.hxx | |
parent | a0beb5fa26e2b66d01a3b21534b848930929a333 (diff) | |
download | mpd-bf6ed643e01687ed21b3a21cb3f77a1042e22c15.tar.gz mpd-bf6ed643e01687ed21b3a21cb3f77a1042e22c15.tar.xz mpd-bf6ed643e01687ed21b3a21cb3f77a1042e22c15.zip |
InputPlugin: pass config_param reference
Diffstat (limited to '')
-rw-r--r-- | src/InputPlugin.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/InputPlugin.hxx b/src/InputPlugin.hxx index a5cf912da..a1eb16339 100644 --- a/src/InputPlugin.hxx +++ b/src/InputPlugin.hxx @@ -39,7 +39,7 @@ struct input_plugin { * @return true on success, false if the plugin should be * disabled */ - bool (*init)(const struct config_param *param, GError **error_r); + bool (*init)(const config_param ¶m, GError **error_r); /** * Global deinitialization. Called once before MPD shuts |