doxygen: Fix doxygen errors.

Change-Id: Ic50e95b4fc10f74ab15416d908e8a87ee8ec2f85
This commit is contained in:
Sean Bright
2023-01-30 16:17:08 -05:00
committed by Friendly Automation
parent 78f5a41d64
commit c85fc1278f
20 changed files with 101 additions and 77 deletions

View File

@@ -808,15 +808,15 @@ struct ast_geoloc_eprofile *ast_geoloc_eprofile_create_from_pidf(
* \internal
* \brief Create an common, intermediate XML document to pass to the outgoing XSLT process
*
* \param eprofile The eprofile
* \param chan The channel to resolve variables against
* \param ref_string A reference string for error messages
* \return An XML doc
* \param element_name The name of the top-level XML element to create
* \param eprofile The eprofile
* \param chan The channel to resolve variables against
* \param ref_string A reference string for error messages
* \return An XML doc
*
* \note Given that the document is simple and static, it was easier to just
* create the elements in a string buffer and call ast_xml_read_memory()
* at the end instead of creating
*
*/
static struct ast_xml_node *geoloc_eprofile_to_intermediate(const char *element_name, struct ast_geoloc_eprofile *eprofile,
struct ast_channel *chan, const char *ref_string)
@@ -846,8 +846,8 @@ static struct ast_xml_node *geoloc_eprofile_to_intermediate(const char *element_
pidf_node = ast_xml_new_node(element_name);
if (!pidf_node) {
SCOPE_EXIT_LOG_RTN_VALUE(NULL, LOG_ERROR, "%s: Unable to create 'pidf' XML node\n",
ref_string);
SCOPE_EXIT_LOG_RTN_VALUE(NULL, LOG_ERROR, "%s: Unable to create '%s' XML node\n",
ref_string, element_name);
}
loc_node = ast_xml_new_child(pidf_node, "location-info");