From b31d171ae87dabe8026934c60b1a1195dddd32a2 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 17 Mar 2015 11:21:29 +0100 Subject: *: doxygen fixups --- src/encoder/EncoderPlugin.hxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/encoder/EncoderPlugin.hxx') diff --git a/src/encoder/EncoderPlugin.hxx b/src/encoder/EncoderPlugin.hxx index f990bf105..09b68a0a8 100644 --- a/src/encoder/EncoderPlugin.hxx +++ b/src/encoder/EncoderPlugin.hxx @@ -64,15 +64,14 @@ struct EncoderPlugin { * Creates a new encoder object. * * @param plugin the encoder plugin - * @param param optional configuration * @param error location to store the error occurring, or nullptr to ignore errors. * @return an encoder object on success, nullptr on failure */ static inline Encoder * encoder_init(const EncoderPlugin &plugin, const ConfigBlock &block, - Error &error_r) + Error &error) { - return plugin.init(block, error_r); + return plugin.init(block, error); } #endif -- cgit v1.2.3