From: lottaviano Date: Sun, 28 Nov 2010 16:48:43 +0000 (+0000) Subject: doc: Fix documentation warnings in parser. X-Git-Tag: 2.7.0~356 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=9781d857a099bb35f129689806386a7f4de763ce;p=bertos.git doc: Fix documentation warnings in parser. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4581 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/mware/parser.c b/bertos/mware/parser.c index fe6c1352..5bfba1c1 100644 --- a/bertos/mware/parser.c +++ b/bertos/mware/parser.c @@ -206,7 +206,7 @@ bool parser_get_cmd_id(const char* line, unsigned long* ID) * in a given text line without parsing all the parameters and * executing it. * - * \param line Text line to be processed (ASCIIZ) + * \param input Text line to be processed (ASCIIZ) * * \return The command template associated with the command contained * in the line, or NULL if the command is invalid. @@ -250,8 +250,8 @@ static const char *skip_to_params(const char *input, const struct CmdTemplate *c * The first argument will always be the command name, so the actual arguments * will start at index 1. * - * \param line Text line to be processed (ASCIIZ) - * \param templ Command template for this line + * \param input Text line to be processed (ASCIIZ) + * \param cmdp Command template for this line * \param args Will contain the extracted parameters * * \return True if everything OK, false in case of parsing error. @@ -281,7 +281,7 @@ static const void* get_key_from_command(const void* cmd, uint8_t* length) * * Process the input, calling the requested command (if found). * - * \param line Text line to be processed (ASCIIZ) + * \param input Text line to be processed (ASCIIZ) * * \return true if everything is OK, false in case of errors */