mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 16:33:34 +00:00
Fix a bunch of places where \arg was used instead of \param. Using \arg
to document arguments seems logical, and does work, but is not the best thing to use. \arg in doxygen is simply for creating non-nested unordered lists. \param is the correct tag to use to document function parameters, and will come out better in the generated documentation. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@127401 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -183,14 +183,14 @@ void ast_console_toggle_loglevel(int fd, int leve, int state);
|
||||
|
||||
/*!
|
||||
* \brief Get the debug level for a file
|
||||
* \arg file the filename
|
||||
* \param file the filename
|
||||
* \return the debug level
|
||||
*/
|
||||
unsigned int ast_debug_get_by_file(const char *file);
|
||||
|
||||
/*!
|
||||
* \brief Get the debug level for a file
|
||||
* \arg file the filename
|
||||
* \param file the filename
|
||||
* \return the debug level
|
||||
*/
|
||||
unsigned int ast_verbose_get_by_file(const char *file);
|
||||
|
Reference in New Issue
Block a user